In [1]:
using 
CSV,
Dates,
DataFrames,
Format,
Markdown,
Measures,
Plots,
RCall,
Statistics,
StatsPlots,
Suppressor
@suppress R"library(forecast)"
@suppress gr()
;
In [2]:
death_path = "COVID-19/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_deaths_global.csv"
confirmed_path = "COVID-19/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv"
;
In [3]:
death = CSV.read(death_path) |> DataFrame! |> x -> rename!(x, Dict(Symbol("Province/State") => :state, Symbol("Country/Region") => :country))
confirmed = CSV.read(confirmed_path) |> DataFrame! |> x -> rename!(x, Dict(Symbol("Province/State") => :state, Symbol("Country/Region") => :country))
;
In [4]:
"""
    convert an array of columns and column names into a markdown table

    parameters: 
        cols : Array[Array[Any]] | DataFrame
            an array of arrays which are the columns of the table
        names : Array[String]
            an array of column names. If inputting a df, input `string.(names(df))`
        df : Boolean
            whether or not the cols are an array of arrays or a dataframe

    returns: String
        string of markdown text
"""
function markdown_table(cols, names; df=false)
    if df
        cols = [col for col in eachcol(cols)]
    end
    output_string = ""
    cols = [repr.(col) for col in cols]
    for i in 1:length(names)
        output_string = output_string * "|" * names[i]
    end
    output_string *= "\n"
    for i in 1:length(names)
        output_string = output_string * "|" * "---"
    end
    output_string *= "\n"
    for row in 1:length(cols[1])
        for col in 1:length(cols)
            output_string = output_string * "|" * cols[col][row]
        end
        output_string *= "\n"
    end
    # displaying strings without quotes
    output_string =  replace(output_string, "\"" => "")

    return output_string
end
;
In [5]:
function country_data(country; state=false, start_date=Dates.Date(2020, 1, 22), end_date="max")
    aggregate(x) = [sum(col) for col in eachcol(x)]
    
    state_mask = typeof(state) == String ? death.state .== state : true
    d = death[(death.country .== country) .& state_mask, 5:end] |> aggregate
    dates = [Dates.Date(2020, 1, 22) + Dates.Day(day) for day in 1:length(d)] |> x -> reshape(x, :, 1)
    state_mask = typeof(state) == String ? confirmed.state .== state : true
    c = confirmed[(confirmed.country .== country) .& state_mask, 5:end] |> aggregate
    
    df = convert(DataFrame, dates) |> x -> rename!(x, [:date])
    country_name = typeof(state) == String ? country * "-" * state : country
    df[!, :country] .= country_name
    df[!, :confirmed] = c
    df[!, :deaths] = d
    df[!, :death_rate] = d ./ c
    df[!, :new_cases] .= 0
    df[2:end, :new_cases] = df[2:end, :confirmed] .- df[1:end-1, :confirmed]
    df[!, :new_deaths] .= 0
    df[2:end, :new_deaths] = df[2:end, :deaths] .- df[1:end-1, :deaths]
    df[!, :acceleration_cases] .= 0
    df[2:end, :acceleration_cases] = df[2:end, :new_cases] .- df[1:end-1, :new_cases]
    df[!, :acceleration_deaths] .= 0
    df[2:end, :acceleration_deaths] = df[2:end, :new_deaths] .- df[1:end-1, :new_deaths]
    df[!, :days_since_100] .= 0
    counter = 0
    for row in eachrow(df)
        if row.confirmed > 100
            counter += 1
        end
        row.days_since_100 = counter
    end
    df[!, :days_since_10] .= 0
    counter = 0
    for row in eachrow(df)
        if row.deaths > 10
            counter += 1
        end
        row.days_since_10 = counter
    end
    
    if end_date == "max"
        end_date = maximum(df.date)
    end
    return df[(df.date .>= start_date) .& (df.date .<= end_date), :]
end
;
In [6]:
function plot_country(country; state=false, metric=:confirmed, start_date=Dates.Date(2020, 1, 22), end_date="max", days_since_100=false)
    data = country_data(country; state=state, start_date=start_date, end_date=end_date)
    if days_since_100
        if metric == :confirmed
            plot(data[data.days_since_100 .> 0, :days_since_100], data[data.days_since_100 .> 0, metric], label=country, legend=:outertopright, size=(1000, 500))
        else
            plot(data[data.days_since_10 .> 0, :days_since_10], data[data.days_since_10 .> 0, metric], label=country, legend=:outertopright, size=(1000, 500))
        end
    else
        plot(data.date, data[!, metric], label=country, legend=:outertopright, size=(1000, 500))
    end
    
    plot!([0], linetype=:hline, color=:black, label="")
    plot!(yformatter=:plain)
end
function plot_country!(country; state=false, metric=:confirmed, start_date=Dates.Date(2020, 1, 22), end_date="max", days_since_100=false)
    data = country_data(country; state=state, start_date=start_date, end_date=end_date)
    if days_since_100
        if metric == :confirmed
            plot!(data[data.days_since_100 .> 0, :days_since_100], data[data.days_since_100 .> 0, metric], label=country, legend=:outertopright, size=(1000, 500))
        else
            plot!(data[data.days_since_10 .> 0, :days_since_10], data[data.days_since_10 .> 0, metric], label=country, legend=:outertopright, size=(1000, 500))
        end
    else
        plot!(data.date, data[!, metric], label=country, legend=:outertopright, size=(1000, 500))
    end
    plot!(yformatter=:plain)
end
bar_plot(country, metric) = bar(
    all_country_data[
        (all_country_data.country .== country) .& (all_country_data.date .>= Dates.Date(2020, 1, 1)),
        :date
    ], 
    all_country_data[
        (all_country_data.country .== country) .& (all_country_data.date .>= Dates.Date(2020, 1, 1)),
        metric
    ], 
    legend=false, 
    linecolor=1, 
    title=country,
    yformatter=:plain
)
function accel_plot(country_name="World")
    if country_name == "World"
        tmp = all_country_data
    else
        tmp = all_country_data[all_country_data.country .== country_name, :]
    end
    agg = by(tmp, [:date], :confirmed => sum, :deaths => sum)
    conf = plot(agg.date, agg.confirmed_sum, legend=false, title="$country_name Confirmed Cases", size=(1400, 700), color=:grey, yformatter=:plain)
    death_plot = plot(agg.date, agg.deaths_sum, legend=false, title="$country_name Deaths", size=(1400, 700), color=:orange, yformatter=:plain)

    # derivates
    agg[!, :new_cases] .= 0
    agg[!, :new_cases][2:end] = agg.confirmed_sum[2:end] - agg.confirmed_sum[1:end-1]
    agg[!, :new_deaths] .= 0
    agg[!, :new_deaths][2:end] = agg.deaths_sum[2:end] - agg.deaths_sum[1:end-1]
    agg[!, :conf_acceleration] .= 0
    agg[!, :conf_acceleration][2:end] = agg.new_cases[2:end] - agg.new_cases[1:end-1]
    agg[!, :death_acceleration] .= 0
    agg[!, :death_acceleration][2:end] = agg.new_deaths[2:end] - agg.new_deaths[1:end-1]

    # moving average
    moving_average(vs,n) = [sum(@view vs[i:(i+n-1)])/n for i in 1:(length(vs)-(n-1))]
    n_days = 3
    ma_date = agg.date[1 + n_days-1:end]
    conf_slope = moving_average(agg.new_cases, n_days)
    death_slope = moving_average(agg.new_deaths, n_days)
    conf_acc = moving_average(agg.conf_acceleration, n_days)
    death_acc = moving_average(agg.death_acceleration, n_days)

    p_conf_slope = plot(ma_date, conf_slope, legend=false, title="$country_name 1st Derivative (new cases)", size=(1400, 700), color=:grey)
    plot!([0], linetype=:hline, color=:black, label="", yformatter=:plain)

    p_death_slope = plot(ma_date, death_slope, legend=false, title="$country_name 1st Derivative (new deaths)", size=(1400, 700), color=:orange)
    plot!([0], linetype=:hline, color=:black, label="", yformatter=:plain)

    p_conf_acc = plot(ma_date, conf_acc, legend=false, title="$country_name 2nd Derivative (cases acceleration)", size=(1400, 700), color=:grey)
    plot!([0], linetype=:hline, color=:black, label="", yformatter=:plain)

    p_death_acc = plot(ma_date, death_acc, legend=false, title="$country_name 2nd Derivative (deaths acceleration)", size=(1400, 700), color=:orange)
    plot!([0], linetype=:hline, color=:black, label="", yformatter=:plain)

    plot(conf, death_plot, p_conf_slope, p_death_slope, p_conf_acc, p_death_acc, layout=(3,2))
end
;
In [7]:
function r_forecast(x, y; r_forecast_function, time_function, h)    
    fc_x = [x[end] + time_function(i) for i in 1:h]
    fc = r_forecast_function(y)
    point_forecast = [val for val in fc[2]]
    lo_80 = [val for val in fc[6][1:h]]
    hi_80 = [val for val in fc[5][1:h]]
    lo_95 = [val for val in fc[6][h+1:h*2]]
    hi_95 = [val for val in fc[5][h+1:h*2]]
    output = hcat([point_forecast, lo_80, hi_80, lo_95, hi_95]...) |> DataFrame |> x -> rename!(x, [:point_forecast, :lo_80, :hi_80, :lo_95, :hi_95])

    p = plot(x, y, legend=false, label="Observed", color=:black, formatter=:plain)
    plot!(fc_x, point_forecast, ribbon=(point_forecast.-lo_95, hi_95.-point_forecast), label="", color=:lightblue, fillalpha=0.5)
    plot!(fc_x, point_forecast, ribbon=(point_forecast.-lo_80, hi_80.-point_forecast), label="Forecast", color=:blue, fillalpha=0.3)
    
    return [fc, output, p]
end
;
In [8]:
function individual_country(country; comparison_country="Italy")
    # line plots
    cases_100 = plot_country(country, days_since_100=true, metric=:confirmed)
    plot_country!(comparison_country, days_since_100=true, metric=:confirmed)
    plot!(title="$country Days Since 100th Case", titlefont=font(10))
    deaths_10 = plot_country(country, days_since_100=true, metric=:deaths)
    plot_country!(comparison_country, days_since_100=true, metric=:deaths)
    plot!(title="$country Days Since 10th Death", titlefont=font(10))
    line_plots = plot(cases_100, deaths_10, layout=(2,1))
    
    #accel plots
    accel_plots = accel_plot(country)
    plot!(titlefont=font(10))
    
    # bar plots
    cases_bar = bar_plot(country, :new_cases)
    plot!(title="$country New Cases Per Day", titlefont=font(10))
    deaths_bar = bar_plot(country, :new_deaths)
    plot!(title="$country Deaths Per Day", titlefont=font(10))
    bar_plots = plot(cases_bar, deaths_bar, layout=(2,1))
    
    # forecast plots
    data = country_data(country) |> x -> x[x.confirmed .>= 100,:]
    forecast_plot_cases = r_forecast(data.date, data.confirmed, r_forecast_function = z -> R"holt"(z, h=20, damped=true), time_function=Dates.Day, h=20)[3]
    plot!(title="$country Forecast Cases", titlefont=font(10))
    forecast_plot_deaths = r_forecast(data.date, data.deaths, r_forecast_function = z -> R"holt"(z, h=20, damped=true), time_function=Dates.Day, h=20)[3]
    plot!(title="$country Forecast Deaths", titlefont=font(10))
    forecast_plots = plot(forecast_plot_cases, forecast_plot_deaths, layout=(1, 2))
    
    final_plot = plot(accel_plots, line_plots, bar_plots, forecast_plots, layout=(4, 1))
    plot!(size=(900, 2000), margin=5mm)
    return final_plot
end
;
In [9]:
all_countries = death.country |> unique |> sort
all_country_data = vcat([country_data(country) for country in all_countries]...)
current_state = by(all_country_data, [:country], :confirmed => maximum, :deaths => maximum)
current_state[!, :death_rate] = current_state.deaths_maximum ./ current_state.confirmed_maximum
;
In [10]:
Markdown.parse("""
    # Overview of COVID-19 as of $(maximum(all_country_data.date))
    This page uses data from https://github.com/CSSEGISandData/COVID-19 (Johns Hopkins CSSE is the original source) to create a report on the status of COVID-19 cases and deaths around the world. It is updated once a day around 10:00am CET.
    """)
Out[10]:

Overview of COVID-19 as of 2020-04-05

This page uses data from https://github.com/CSSEGISandData/COVID-19 (Johns Hopkins CSSE is the original source) to create a report on the status of COVID-19 cases and deaths around the world. It is updated once a day around 10:00am CET.

Worldwide Current State

In [11]:
tmp = current_state
Markdown.parse("""
- Confirmed cases: **$(format(sum(tmp.confirmed_maximum), commas=true))**
- Deaths: **$(format(sum(tmp.deaths_maximum), commas=true))**
- Death Rate: **$(round(sum(tmp.deaths_maximum) / sum(tmp.confirmed_maximum) * 100, digits=2))%**
""")
Out[11]:
  • Confirmed cases: 1,197,405
  • Deaths: 64,608
  • Death Rate: 5.4%
In [12]:
accel_plot("World")
plot!(size=(900, 700))
Out[12]:
2020-02-01 2020-03-01 2020-04-01 0 250000 500000 750000 1000000 World Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10000 20000 30000 40000 50000 60000 World Deaths 2020-02-01 2020-03-01 2020-04-01 0 20000 40000 60000 80000 World 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 5000 6000 World 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -2500 0 2500 5000 7500 World 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 World 2nd Derivative (deaths acceleration)

Top 10 Worst Affected Countries

Confirmed

In [13]:
top_10 = sort(current_state, order(:confirmed_maximum, rev=true))[1:10, :]
top_10[!, :death_rate] = string.(round.(top_10.death_rate * 100, digits=2)) .* "%"
Markdown.parse(
    markdown_table(top_10, ["Country", "Confirmed Cases", "Deaths", "Death Rate"]; df=true)
)
Out[13]:
Country Confirmed Cases Deaths Death Rate
US 308850 8407 2.72%
Spain 126168 11947 9.47%
Italy 124632 15362 12.33%
Germany 96092 1444 1.5%
France 90848 7574 8.34%
China 82543 3330 4.03%
Iran 55743 3452 6.19%
United Kingdom 42477 4320 10.17%
Turkey 23934 501 2.09%
Switzerland 20505 666 3.25%

Acceleration (>1000 cases now)

The Acceleration of Last 5 Days column is calculated by the average second derivative over the last 5 days / number of cases 5 days ago. It doesn't have much intrinsic meaning but is rather a more comparable/relative measure between countries of how fast new cases are accelerating.

In [14]:
countries = unique(all_country_data.country)
acceleration = []
cases_5_ago = []
cases_now = []
for country in countries
    metric = mean(all_country_data[all_country_data.country .== country, :acceleration_cases][end-4:end])
    metric /= all_country_data[all_country_data.country .== country, :confirmed][end-4]
    if isnan(metric)
        metric = 0
    end
    push!(acceleration, metric)
    push!(cases_5_ago, all_country_data[all_country_data.country .== country, :confirmed][end-4])
    push!(cases_now, all_country_data[all_country_data.country .== country, :confirmed][end])
end
last_5 = rename!(DataFrame([countries, acceleration, cases_now, cases_5_ago]), [:country, :last_5_accel, :cases_now, :cases_5_ago])
last_5[!, :perc_increase] = last_5.cases_now ./ last_5.cases_5_ago .- 1
tmp = sort(last_5[(last_5.cases_5_ago .> 20) .& (last_5.cases_now .> 1000), :], order(:last_5_accel, rev=true))
tmp[!, :perc_increase] = string.(round.(tmp.perc_increase .* 100, digits=2)) .* "%"
rename!(tmp, [:Country, Symbol("Acceleration of Last 5 Days"), Symbol("Cases Now"), Symbol("Cases 5 Days Ago"), Symbol("% Increase in 5 Days")])
tmp[!, Symbol("Acceleration of Last 5 Days")] = string.(round.(tmp[!, Symbol("Acceleration of Last 5 Days")] * 100, digits=2)) .* "%"

Markdown.parse(
    markdown_table(tmp, string.(names(tmp)), df=true)
)
Out[14]:
Country Acceleration of Last 5 Days Cases Now Cases 5 Days Ago % Increase in 5 Days
France 8.02% 90848 52827 71.97%
United Arab Emirates 6.02% 1505 664 126.66%
Japan 5.35% 3139 1953 60.73%
Qatar 4.89% 1325 781 69.65%
India 4.12% 3082 1397 120.62%
Brazil 3.43% 10360 5717 81.21%
Ukraine 2.48% 1225 645 89.92%
Russia 2.4% 4731 2337 102.44%
Serbia 2.31% 1624 900 80.44%
Finland 2.19% 1882 1418 32.72%
Argentina 2.11% 1451 1054 37.67%
Turkey 2.07% 23934 13531 76.88%
Panama 1.86% 1673 1181 41.66%
US 1.31% 308850 188172 64.13%
Romania 1.21% 3613 2245 60.94%
Czechia 1.19% 4472 3308 35.19%
Estonia 1.13% 1039 745 39.46%
Egypt 1.07% 1070 710 50.7%
Peru 1.0% 1746 1065 63.94%
Colombia 0.95% 1406 906 55.19%
Belgium 0.94% 18431 12775 44.27%
United Kingdom 0.88% 42477 25481 66.7%
Denmark 0.87% 4269 3039 40.47%
Singapore 0.86% 1189 926 28.4%
Chile 0.83% 4161 2738 51.97%
Luxembourg 0.73% 2729 2178 25.3%
Mexico 0.6% 1688 1094 54.3%
Ecuador 0.53% 3465 2240 54.69%
Portugal 0.52% 10524 7443 41.39%
South Africa 0.5% 1585 1353 17.15%
Poland 0.44% 3627 2311 56.95%
Ireland 0.22% 4604 3235 42.32%
Algeria 0.2% 1251 716 74.72%
Italy 0.14% 124632 105792 17.81%
Pakistan 0.12% 2818 1938 45.41%
Norway 0.08% 5550 4641 19.59%
Greece 0.06% 1673 1314 27.32%
Germany 0.04% 96092 71808 33.82%
Korea, South 0.03% 10156 9786 3.78%
Netherlands 0.03% 16727 12667 32.05%
China -0.01% 82543 82279 0.32%
Malaysia -0.04% 3483 2766 25.92%
Sweden -0.07% 6443 4435 45.28%
Israel -0.09% 7851 5358 46.53%
Saudi Arabia -0.18% 2179 1563 39.41%
Spain -0.18% 126168 95923 31.53%
Iceland -0.23% 1417 1135 24.85%
Switzerland -0.23% 20505 16605 23.49%
Iran -0.28% 55743 44605 24.97%
Indonesia -0.3% 2092 1528 36.91%
Philippines -0.5% 3094 2084 48.46%
Thailand -0.57% 2067 1651 25.2%
Australia -0.69% 5550 4559 21.74%
Croatia -0.69% 1126 867 29.87%
Dominican Republic -0.76% 1488 1109 34.17%
Austria -1.13% 11781 10180 15.73%
Canada -1.35% 12978 8527 52.2%

Countries

Days since 100th case and 10th death plotted with Italy for comparison. Only countries with >= 500 confirmed cases show graphs. Derivative plots are 3 days moving average.

Forecasts

  • Forecast numbers and plots are created using Holt's linear trend method with dampening. Important to note is that this is just one of many methods that can forecast the data, and I have not spent a significant amount of time validating it. I may spend more time in the future investigating better forecasting methods.
  • Forecast numbers are given for 10 and 20 days out with the 80% prediction interval. Plots display the point forecast and 80% prediction interval (dark blue shading), and 95% prediction interval (light blue shading).
In [15]:
for coun in all_countries
    data = country_data(coun)
    display(Markdown.parse("## $coun"))
    Markdown.parse("""
- Confirmed cases: **$(format(maximum(data.confirmed), commas=true))**
- Deaths: **$(format(maximum(data.deaths), commas=true))**
- Death Rate: **$(round(maximum(data.deaths) / maximum(data.confirmed) * 100, digits=2))%**
""") |> display
    if maximum(data.confirmed) >= 500 || coun == "Hungary" 
        h = 20
        raw_fc_data = data[data.confirmed .>= 100, :]
        fc_data_cases = r_forecast(raw_fc_data.date, raw_fc_data.confirmed, r_forecast_function = z -> R"holt"(z, h=h, damped=true), time_function=Dates.Day, h=h)[2]
        fc_data_cases = round.(fc_data_cases, digits=0)
        fc_data_deaths = r_forecast(raw_fc_data.date, raw_fc_data.deaths, r_forecast_function = z -> R"holt"(z, h=h, damped=true), time_function=Dates.Day, h=h)[2]
        fc_data_deaths = round.(fc_data_deaths, digits=0)
        _10_days = maximum(data.date) + Dates.Day(10)
        _20_days = maximum(data.date) + Dates.Day(20)
        Markdown.parse("""
**$coun Forecast**
<br>
_By $(_10_days)_
- Confirmed cases: **$(format(fc_data_cases[10, :point_forecast], commas=true))** (+/- **$(format(fc_data_cases[10, :point_forecast] - fc_data_cases[10, :lo_80], commas=true))**)
- Deaths: **$(format(fc_data_deaths[10, :point_forecast], commas=true))** (+/- **$(format(fc_data_deaths[10, :point_forecast] - fc_data_deaths[10, :lo_80], commas=true))**)
_By $(_20_days)_
- Confirmed cases: **$(format(fc_data_cases[20, :point_forecast], commas=true))** (+/- **$(format(fc_data_cases[20, :point_forecast] - fc_data_cases[20, :lo_80], commas=true))**)
- Deaths: **$(format(fc_data_deaths[20, :point_forecast], commas=true))** (+/- **$(format(fc_data_deaths[20, :point_forecast] - fc_data_deaths[20, :lo_80], commas=true))**)
""") |> display
        display(individual_country(coun))
    end
end

Afghanistan

  • Confirmed cases: 299
  • Deaths: 7
  • Death Rate: 2.34%

Albania

  • Confirmed cases: 333
  • Deaths: 20
  • Death Rate: 6.01%

Algeria

  • Confirmed cases: 1,251
  • Deaths: 130
  • Death Rate: 10.39%

Algeria Forecast
By 2020-04-15

  • Confirmed cases: 2,228 (+/- 773)
  • Deaths: 344 (+/- 126)

By 2020-04-25

  • Confirmed cases: 3,012 (+/- 1,964)
  • Deaths: 519 (+/- 319)
2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 1000 1000 Algeria Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 100 100 Algeria Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Algeria 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 Algeria 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 0 10 20 30 Algeria 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 Algeria 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Algeria Days Since 100th Case Algeria Italy 0 10 20 30 40 0 5000 10000 15000 Algeria Days Since 10th Death Algeria Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Algeria New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 25 Algeria Deaths Per Day 2020-03-21 2020-03-30 2020-04-08 2020-04-17 2020-04-26 0 1000 2000 3000 4000 5000 6000 Algeria Forecast Cases 2020-03-21 2020-03-30 2020-04-08 2020-04-17 2020-04-26 0 250 500 750 1000 Algeria Forecast Deaths

Andorra

  • Confirmed cases: 466
  • Deaths: 17
  • Death Rate: 3.65%

Angola

  • Confirmed cases: 10
  • Deaths: 2
  • Death Rate: 20.0%

Antigua and Barbuda

  • Confirmed cases: 15
  • Deaths: 0
  • Death Rate: 0.0%

Argentina

  • Confirmed cases: 1,451
  • Deaths: 43
  • Death Rate: 2.96%

Argentina Forecast
By 2020-04-15

  • Confirmed cases: 2,467 (+/- 449)
  • Deaths: 85 (+/- 22)

By 2020-04-25

  • Confirmed cases: 3,345 (+/- 1,123)
  • Deaths: 119 (+/- 56)
2020-02-01 2020-03-01 2020-04-01 0 300 600 900 1200 Argentina Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Argentina Deaths 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 100 100 Argentina 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 Argentina 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -20 0 20 40 60 Argentina 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.2 0.0 0.2 0.4 0.6 0.8 1.0 1.0 Argentina 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Argentina Days Since 100th Case Argentina Italy 0 10 20 30 40 0 5000 10000 15000 Argentina Days Since 10th Death Argentina Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 Argentina New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 Argentina Deaths Per Day 2020-03-20 2020-03-29 2020-04-07 2020-04-16 2020-04-25 0 1000 2000 3000 4000 5000 Argentina Forecast Cases 2020-03-20 2020-03-29 2020-04-07 2020-04-16 2020-04-25 0 50 100 150 200 Argentina Forecast Deaths

Armenia

  • Confirmed cases: 770
  • Deaths: 7
  • Death Rate: 0.91%

Armenia Forecast
By 2020-04-15

  • Confirmed cases: 1,369 (+/- 227)
  • Deaths: 17 (+/- 5)

By 2020-04-25

  • Confirmed cases: 1,847 (+/- 571)
  • Deaths: 25 (+/- 14)
2020-02-01 2020-03-01 2020-04-01 0 200 400 600 Armenia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 Armenia Deaths 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Armenia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.2 0.4 0.6 0.8 1.0 1.0 Armenia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 0 10 20 Armenia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.2 0.0 0.2 0.4 0.6 0.8 1.0 Armenia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Armenia Days Since 100th Case Armenia Italy 0 10 20 30 40 0 5000 10000 15000 Armenia Days Since 10th Death Armenia Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Armenia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 Armenia Deaths Per Day 2020-03-19 2020-03-29 2020-04-08 2020-04-18 500 1000 1500 2000 2500 Armenia Forecast Cases 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 10 20 30 40 Armenia Forecast Deaths

Australia

  • Confirmed cases: 5,550
  • Deaths: 30
  • Death Rate: 0.54%

Australia Forecast
By 2020-04-15

  • Confirmed cases: 7,490 (+/- 1,568)
  • Deaths: 52 (+/- 13)

By 2020-04-25

  • Confirmed cases: 9,072 (+/- 3,930)
  • Deaths: 71 (+/- 29)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 5000 Australia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 Australia Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 Australia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 Australia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -100 -50 0 50 100 Australia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1.0 -0.5 0.0 0.5 1.0 1.5 Australia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Australia Days Since 100th Case Australia Italy 0 10 20 30 40 0 5000 10000 15000 Australia Days Since 10th Death Australia Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Australia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 Australia Deaths Per Day 2020-03-10 2020-03-22 2020-04-03 2020-04-15 0 5000 10000 15000 Australia Forecast Cases 2020-03-10 2020-03-22 2020-04-03 2020-04-15 0 25 50 75 100 Australia Forecast Deaths

Austria

  • Confirmed cases: 11,781
  • Deaths: 186
  • Death Rate: 1.58%

Austria Forecast
By 2020-04-15

  • Confirmed cases: 14,366 (+/- 2,914)
  • Deaths: 318 (+/- 70)

By 2020-04-25

  • Confirmed cases: 16,384 (+/- 7,356)
  • Deaths: 427 (+/- 171)
2020-02-01 2020-03-01 2020-04-01 0 2500 5000 7500 10000 Austria Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Austria Deaths 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 Austria 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 Austria 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -200 -100 0 100 Austria 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -2 0 2 4 Austria 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Austria Days Since 100th Case Austria Italy 0 10 20 30 40 0 5000 10000 15000 Austria Days Since 10th Death Austria Italy 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 1000 1000 Austria New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 Austria Deaths Per Day 2020-03-08 2020-03-20 2020-04-01 2020-04-13 2020-04-25 0 5000 10000 15000 20000 25000 Austria Forecast Cases 2020-03-08 2020-03-20 2020-04-01 2020-04-13 2020-04-25 0 200 400 600 Austria Forecast Deaths

Azerbaijan

  • Confirmed cases: 521
  • Deaths: 5
  • Death Rate: 0.96%

Azerbaijan Forecast
By 2020-04-15

  • Confirmed cases: 871 (+/- 94)
  • Deaths: 6 (+/- 0)

By 2020-04-25

  • Confirmed cases: 1,163 (+/- 132)
  • Deaths: 6 (+/- 0)
2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Azerbaijan Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 Azerbaijan Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 Azerbaijan 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.1 0.2 0.3 0.4 0.5 0.6 Azerbaijan 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -5 0 5 10 Azerbaijan 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.3 -0.2 -0.1 0.0 0.1 0.2 0.3 Azerbaijan 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Azerbaijan Days Since 100th Case Azerbaijan Italy 0 10 20 30 40 0 5000 10000 15000 Azerbaijan Days Since 10th Death Azerbaijan Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Azerbaijan New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.00 0.25 0.50 0.75 1.00 Azerbaijan Deaths Per Day 2020-03-27 2020-04-04 2020-04-12 2020-04-20 250 500 750 1000 1250 Azerbaijan Forecast Cases 2020-03-27 2020-04-04 2020-04-12 2020-04-20 3 4 5 6 Azerbaijan Forecast Deaths

Bahamas

  • Confirmed cases: 28
  • Deaths: 4
  • Death Rate: 14.29%

Bahrain

  • Confirmed cases: 688
  • Deaths: 4
  • Death Rate: 0.58%

Bahrain Forecast
By 2020-04-15

  • Confirmed cases: 961 (+/- 140)
  • Deaths: 4 (+/- 3)

By 2020-04-25

  • Confirmed cases: 1,181 (+/- 302)
  • Deaths: 4 (+/- 5)
2020-02-01 2020-03-01 2020-04-01 0 200 400 600 Bahrain Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Bahrain Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Bahrain 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.1 0.2 0.3 0.4 0.5 0.6 Bahrain 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -20 -10 0 10 20 Bahrain 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.3 -0.2 -0.1 0.0 0.1 0.2 0.3 Bahrain 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Bahrain Days Since 100th Case Bahrain Italy 0 10 20 30 40 0 5000 10000 15000 Bahrain Days Since 10th Death Bahrain Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Bahrain New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.00 0.25 0.50 0.75 1.00 Bahrain Deaths Per Day 2020-03-10 2020-03-22 2020-04-03 2020-04-15 300 600 900 1200 1500 Bahrain Forecast Cases 2020-03-10 2020-03-22 2020-04-03 2020-04-15 -2 0 2 4 6 8 10 Bahrain Forecast Deaths

Bangladesh

  • Confirmed cases: 70
  • Deaths: 8
  • Death Rate: 11.43%

Barbados

  • Confirmed cases: 52
  • Deaths: 0
  • Death Rate: 0.0%

Belarus

  • Confirmed cases: 440
  • Deaths: 5
  • Death Rate: 1.14%

Belgium

  • Confirmed cases: 18,431
  • Deaths: 1,283
  • Death Rate: 6.96%

Belgium Forecast
By 2020-04-15

  • Confirmed cases: 33,133 (+/- 6,258)
  • Deaths: 2,498 (+/- 478)

By 2020-04-25

  • Confirmed cases: 45,146 (+/- 15,817)
  • Deaths: 3,489 (+/- 1,214)
2020-02-01 2020-03-01 2020-04-01 0 5000 10000 15000 Belgium Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 1000 1000 Belgium Deaths 2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 Belgium 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Belgium 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -200 0 200 400 Belgium 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -20 -10 0 10 20 30 40 Belgium 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Belgium Days Since 100th Case Belgium Italy 0 10 20 30 40 0 5000 10000 15000 Belgium Days Since 10th Death Belgium Italy 2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 Belgium New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Belgium Deaths Per Day 2020-03-06 2020-03-19 2020-04-01 2020-04-14 0 20000 40000 60000 Belgium Forecast Cases 2020-03-06 2020-03-19 2020-04-01 2020-04-14 0 1000 2000 3000 4000 5000 Belgium Forecast Deaths

Belize

  • Confirmed cases: 4
  • Deaths: 0
  • Death Rate: 0.0%

Benin

  • Confirmed cases: 16
  • Deaths: 0
  • Death Rate: 0.0%

Bhutan

  • Confirmed cases: 5
  • Deaths: 0
  • Death Rate: 0.0%

Bolivia

  • Confirmed cases: 139
  • Deaths: 10
  • Death Rate: 7.19%

Bosnia and Herzegovina

  • Confirmed cases: 624
  • Deaths: 21
  • Death Rate: 3.37%

Bosnia and Herzegovina Forecast
By 2020-04-15

  • Confirmed cases: 1,070 (+/- 254)
  • Deaths: 41 (+/- 15)

By 2020-04-25

  • Confirmed cases: 1,430 (+/- 643)
  • Deaths: 59 (+/- 37)
2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 600 Bosnia and Herzegovina Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 Bosnia and Herzegovina Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 Bosnia and Herzegovina 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 2.5 Bosnia and Herzegovina 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -5 0 5 10 15 Bosnia and Herzegovina 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.5 0.0 0.5 1.0 Bosnia and Herzegovina 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Bosnia and Herzegovina Days Since 100th Case Bosnia and Herzegovina Italy 0 10 20 30 40 0 5000 10000 15000 Bosnia and Herzegovina Days Since 10th Death Bosnia and Herzegovina Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Bosnia and Herzegovina New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Bosnia and Herzegovina Deaths Per Day 2020-03-23 2020-04-01 2020-04-10 2020-04-19 500 1000 1500 2000 Bosnia and Herzegovina Forecast Cases 2020-03-23 2020-04-01 2020-04-10 2020-04-19 0 25 50 75 100 Bosnia and Herzegovina Forecast Deaths

Botswana

  • Confirmed cases: 4
  • Deaths: 1
  • Death Rate: 25.0%

Brazil

  • Confirmed cases: 10,360
  • Deaths: 445
  • Death Rate: 4.3%

Brazil Forecast
By 2020-04-15

  • Confirmed cases: 21,503 (+/- 4,911)
  • Deaths: 1,077 (+/- 211)

By 2020-04-25

  • Confirmed cases: 30,609 (+/- 12,266)
  • Deaths: 1,600 (+/- 535)
2020-02-01 2020-03-01 2020-04-01 0 2500 5000 7500 10000 Brazil Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 Brazil Deaths 2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 Brazil 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Brazil 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Brazil 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 Brazil 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Brazil Days Since 100th Case Brazil Italy 0 10 20 30 40 0 5000 10000 15000 Brazil Days Since 10th Death Brazil Italy 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 1000 1000 Brazil New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Brazil Deaths Per Day 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 0 10000 20000 30000 40000 50000 Brazil Forecast Cases 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 0 500 1000 1500 2000 Brazil Forecast Deaths

Brunei

  • Confirmed cases: 135
  • Deaths: 1
  • Death Rate: 0.74%

Bulgaria

  • Confirmed cases: 503
  • Deaths: 17
  • Death Rate: 3.38%

Bulgaria Forecast
By 2020-04-15

  • Confirmed cases: 686 (+/- 44)
  • Deaths: 32 (+/- 14)

By 2020-04-25

  • Confirmed cases: 836 (+/- 63)
  • Deaths: 44 (+/- 29)
2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Bulgaria Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 Bulgaria Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 Bulgaria 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 Bulgaria 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -6 -4 -2 0 2 4 6 Bulgaria 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1.0 -0.5 0.0 0.5 1.0 Bulgaria 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Bulgaria Days Since 100th Case Bulgaria Italy 0 10 20 30 40 0 5000 10000 15000 Bulgaria Days Since 10th Death Bulgaria Italy 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Bulgaria New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Bulgaria Deaths Per Day 2020-03-20 2020-03-29 2020-04-07 2020-04-16 2020-04-25 200 400 600 800 Bulgaria Forecast Cases 2020-03-20 2020-03-29 2020-04-07 2020-04-16 2020-04-25 0 20 40 60 80 Bulgaria Forecast Deaths

Burkina Faso

  • Confirmed cases: 318
  • Deaths: 16
  • Death Rate: 5.03%

Burma

  • Confirmed cases: 21
  • Deaths: 1
  • Death Rate: 4.76%

Burundi

  • Confirmed cases: 3
  • Deaths: 0
  • Death Rate: 0.0%

Cabo Verde

  • Confirmed cases: 7
  • Deaths: 1
  • Death Rate: 14.29%

Cambodia

  • Confirmed cases: 114
  • Deaths: 0
  • Death Rate: 0.0%

Cameroon

  • Confirmed cases: 555
  • Deaths: 9
  • Death Rate: 1.62%

Cameroon Forecast
By 2020-04-15

  • Confirmed cases: 1,827 (+/- 1,537)
  • Deaths: 19 (+/- 10)

By 2020-04-25

  • Confirmed cases: 3,076 (+/- 4,311)
  • Deaths: 29 (+/- 26)
2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Cameroon Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 Cameroon Deaths 2020-02-01 2020-03-01 2020-04-01 0 25 50 75 100 Cameroon 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 Cameroon 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 Cameroon 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1.0 -0.5 0.0 0.5 1.0 Cameroon 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Cameroon Days Since 100th Case Cameroon Italy 0 10 20 30 40 0 5000 10000 15000 Cameroon Days Since 10th Death Cameroon Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 Cameroon New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Cameroon Deaths Per Day 2020-03-30 2020-04-06 2020-04-13 2020-04-20 -2000 0 2000 4000 6000 8000 10000 Cameroon Forecast Cases 2020-03-30 2020-04-06 2020-04-13 2020-04-20 0 20 40 60 Cameroon Forecast Deaths

Canada

  • Confirmed cases: 12,978
  • Deaths: 218
  • Death Rate: 1.68%

Canada Forecast
By 2020-04-15

  • Confirmed cases: 20,161 (+/- 4,725)
  • Deaths: 563 (+/- 152)

By 2020-04-25

  • Confirmed cases: 25,962 (+/- 11,696)
  • Deaths: 844 (+/- 379)
2020-02-01 2020-03-01 2020-04-01 0 2000 4000 6000 8000 10000 10000 Canada Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 Canada Deaths 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 1000 1000 Canada 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 Canada 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -100 0 100 200 Canada 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Canada 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Canada Days Since 100th Case Canada Italy 0 10 20 30 40 0 5000 10000 15000 Canada Days Since 10th Death Canada Italy 2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 Canada New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Canada Deaths Per Day 2020-03-11 2020-03-23 2020-04-04 2020-04-16 0 10000 20000 30000 40000 Canada Forecast Cases 2020-03-11 2020-03-23 2020-04-04 2020-04-16 0 300 600 900 1200 Canada Forecast Deaths

Central African Republic

  • Confirmed cases: 8
  • Deaths: 0
  • Death Rate: 0.0%

Chad

  • Confirmed cases: 9
  • Deaths: 0
  • Death Rate: 0.0%

Chile

  • Confirmed cases: 4,161
  • Deaths: 27
  • Death Rate: 0.65%

Chile Forecast
By 2020-04-15

  • Confirmed cases: 7,638 (+/- 1,364)
  • Deaths: 66 (+/- 19)

By 2020-04-25

  • Confirmed cases: 10,489 (+/- 3,368)
  • Deaths: 98 (+/- 45)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 Chile Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 25 Chile Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Chile 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 Chile 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -20 0 20 40 Chile 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0.00 0.25 0.50 0.75 1.00 Chile 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Chile Days Since 100th Case Chile Italy 0 10 20 30 40 0 5000 10000 15000 Chile Days Since 10th Death Chile Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 Chile New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 Chile Deaths Per Day 2020-03-16 2020-03-26 2020-04-05 2020-04-15 2020-04-25 0 5000 10000 15000 Chile Forecast Cases 2020-03-16 2020-03-26 2020-04-05 2020-04-15 2020-04-25 0 50 100 150 Chile Forecast Deaths

China

  • Confirmed cases: 82,543
  • Deaths: 3,330
  • Death Rate: 4.03%

China Forecast
By 2020-04-15

  • Confirmed cases: 83,013 (+/- 15,741)
  • Deaths: 3,373 (+/- 317)

By 2020-04-25

  • Confirmed cases: 83,311 (+/- 31,995)
  • Deaths: 3,408 (+/- 771)
2020-02-01 2020-03-01 2020-04-01 0 20000 40000 60000 80000 China Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 China Deaths 2020-02-01 2020-03-01 2020-04-01 0 2000 4000 6000 8000 China 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 China 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -4000 -2000 0 2000 4000 China 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -40 -20 0 20 40 China 2nd Derivative (deaths acceleration) 0 20 40 60 0 20000 40000 60000 80000 100000 100000 China Days Since 100th Case China Italy 0 20 40 60 0 5000 10000 15000 China Days Since 10th Death China Italy 2020-02-01 2020-03-01 2020-04-01 0 5000 10000 15000 China New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 250 China Deaths Per Day 2020-02-01 2020-03-01 2020-04-01 0 20000 40000 60000 80000 100000 100000 China Forecast Cases 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 China Forecast Deaths

Colombia

  • Confirmed cases: 1,406
  • Deaths: 32
  • Death Rate: 2.28%

Colombia Forecast
By 2020-04-15

  • Confirmed cases: 2,483 (+/- 515)
  • Deaths: 83 (+/- 32)

By 2020-04-25

  • Confirmed cases: 3,363 (+/- 1,215)
  • Deaths: 125 (+/- 76)
2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 1250 Colombia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 Colombia Deaths 2020-02-01 2020-03-01 2020-04-01 0 25 50 75 100 Colombia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 Colombia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 0 10 20 Colombia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1 0 1 2 Colombia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Colombia Days Since 100th Case Colombia Italy 0 10 20 30 40 0 5000 10000 15000 Colombia Days Since 10th Death Colombia Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Colombia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 Colombia Deaths Per Day 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 1000 2000 3000 4000 5000 Colombia Forecast Cases 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 50 100 150 200 Colombia Forecast Deaths

Congo (Brazzaville)

  • Confirmed cases: 22
  • Deaths: 2
  • Death Rate: 9.09%

Congo (Kinshasa)

  • Confirmed cases: 154
  • Deaths: 18
  • Death Rate: 11.69%

Costa Rica

  • Confirmed cases: 435
  • Deaths: 2
  • Death Rate: 0.46%

Cote d'Ivoire

  • Confirmed cases: 245
  • Deaths: 1
  • Death Rate: 0.41%

Croatia

  • Confirmed cases: 1,126
  • Deaths: 12
  • Death Rate: 1.07%

Croatia Forecast
By 2020-04-15

  • Confirmed cases: 1,642 (+/- 195)
  • Deaths: 26 (+/- 12)

By 2020-04-25

  • Confirmed cases: 2,049 (+/- 492)
  • Deaths: 36 (+/- 26)
2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 Croatia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Croatia Deaths 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Croatia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 Croatia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 0 10 20 Croatia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.5 0.0 0.5 1.0 Croatia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Croatia Days Since 100th Case Croatia Italy 0 10 20 30 40 0 5000 10000 15000 Croatia Days Since 10th Death Croatia Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Croatia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Croatia Deaths Per Day 2020-03-19 2020-03-29 2020-04-08 2020-04-18 500 1000 1500 2000 2500 Croatia Forecast Cases 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 20 40 60 Croatia Forecast Deaths

Cuba

  • Confirmed cases: 288
  • Deaths: 6
  • Death Rate: 2.08%

Cyprus

  • Confirmed cases: 426
  • Deaths: 11
  • Death Rate: 2.58%

Czechia

  • Confirmed cases: 4,472
  • Deaths: 59
  • Death Rate: 1.32%

Czechia Forecast
By 2020-04-15

  • Confirmed cases: 7,586 (+/- 1,786)
  • Deaths: 118 (+/- 37)

By 2020-04-25

  • Confirmed cases: 10,146 (+/- 4,537)
  • Deaths: 166 (+/- 93)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 Czechia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Czechia Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Czechia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 Czechia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -50 -25 0 25 50 Czechia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.5 0.0 0.5 1.0 1.5 2.0 Czechia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Czechia Days Since 100th Case Czechia Italy 0 10 20 30 40 0 5000 10000 15000 Czechia Days Since 10th Death Czechia Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Czechia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 Czechia Deaths Per Day 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 0 5000 10000 15000 Czechia Forecast Cases 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 0 100 200 300 Czechia Forecast Deaths

Denmark

  • Confirmed cases: 4,269
  • Deaths: 161
  • Death Rate: 3.77%

Denmark Forecast
By 2020-04-15

  • Confirmed cases: 7,162 (+/- 1,113)
  • Deaths: 337 (+/- 68)

By 2020-04-25

  • Confirmed cases: 9,526 (+/- 2,712)
  • Deaths: 481 (+/- 167)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 Denmark Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Denmark Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Denmark 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 Denmark 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -50 -25 0 25 50 Denmark 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -2 -1 0 1 2 3 4 Denmark 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Denmark Days Since 100th Case Denmark Italy 0 10 20 30 40 0 5000 10000 15000 Denmark Days Since 10th Death Denmark Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Denmark New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 Denmark Deaths Per Day 2020-03-10 2020-03-22 2020-04-03 2020-04-15 0 2500 5000 7500 10000 12500 Denmark Forecast Cases 2020-03-10 2020-03-22 2020-04-03 2020-04-15 0 200 400 600 Denmark Forecast Deaths

Diamond Princess

  • Confirmed cases: 712
  • Deaths: 11
  • Death Rate: 1.54%

Diamond Princess Forecast
By 2020-04-15

  • Confirmed cases: 712 (+/- 155)
  • Deaths: 12 (+/- 2)

By 2020-04-25

  • Confirmed cases: 712 (+/- 251)
  • Deaths: 13 (+/- 3)
2020-02-01 2020-03-01 2020-04-01 0 200 400 600 Diamond Princess Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Diamond Princess Deaths 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Diamond Princess 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.00 0.25 0.50 0.75 1.00 Diamond Princess 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -30 -20 -10 0 10 20 Diamond Princess 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.50 -0.25 0.00 0.25 0.50 Diamond Princess 2nd Derivative (deaths acceleration) 0 10 20 30 40 50 0 20000 40000 60000 80000 100000 100000 Diamond Princess Days Since 100th Case Diamond Princess Italy 0 10 20 30 40 0 5000 10000 15000 Diamond Princess Days Since 10th Death Diamond Princess Italy 2020-02-01 2020-03-01 2020-04-01 0 25 50 75 100 Diamond Princess New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 Diamond Princess Deaths Per Day 2020-03-01 2020-04-01 200 400 600 800 1000 Diamond Princess Forecast Cases 2020-03-01 2020-04-01 0 5 10 15 Diamond Princess Forecast Deaths

Djibouti

  • Confirmed cases: 50
  • Deaths: 0
  • Death Rate: 0.0%

Dominica

  • Confirmed cases: 14
  • Deaths: 0
  • Death Rate: 0.0%

Dominican Republic

  • Confirmed cases: 1,488
  • Deaths: 68
  • Death Rate: 4.57%

Dominican Republic Forecast
By 2020-04-15

  • Confirmed cases: 2,222 (+/- 329)
  • Deaths: 97 (+/- 20)

By 2020-04-25

  • Confirmed cases: 2,822 (+/- 548)
  • Deaths: 121 (+/- 29)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 Dominican Republic Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Dominican Republic Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Dominican Republic 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 Dominican Republic 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -60 -40 -20 0 20 Dominican Republic 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -2 -1 0 1 2 3 Dominican Republic 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Dominican Republic Days Since 100th Case Dominican Republic Italy 0 10 20 30 40 0 5000 10000 15000 Dominican Republic Days Since 10th Death Dominican Republic Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 Dominican Republic New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Dominican Republic Deaths Per Day 2020-03-21 2020-03-30 2020-04-08 2020-04-17 2020-04-26 500 1000 1500 2000 2500 3000 3500 Dominican Republic Forecast Cases 2020-03-21 2020-03-30 2020-04-08 2020-04-17 2020-04-26 0 50 100 150 Dominican Republic Forecast Deaths

Ecuador

  • Confirmed cases: 3,465
  • Deaths: 172
  • Death Rate: 4.96%

Ecuador Forecast
By 2020-04-15

  • Confirmed cases: 5,314 (+/- 1,053)
  • Deaths: 397 (+/- 122)

By 2020-04-25

  • Confirmed cases: 6,826 (+/- 2,145)
  • Deaths: 560 (+/- 299)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 Ecuador Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Ecuador Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 Ecuador 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 25 Ecuador 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -100 -50 0 50 100 Ecuador 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -2.5 0.0 2.5 5.0 7.5 Ecuador 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Ecuador Days Since 100th Case Ecuador Italy 0 10 20 30 40 0 5000 10000 15000 Ecuador Days Since 10th Death Ecuador Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Ecuador New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 25 Ecuador Deaths Per Day 2020-03-18 2020-03-28 2020-04-07 2020-04-17 0 2500 5000 7500 10000 Ecuador Forecast Cases 2020-03-18 2020-03-28 2020-04-07 2020-04-17 0 250 500 750 1000 Ecuador Forecast Deaths

Egypt

  • Confirmed cases: 1,070
  • Deaths: 71
  • Death Rate: 6.64%

Egypt Forecast
By 2020-04-15

  • Confirmed cases: 2,004 (+/- 377)
  • Deaths: 120 (+/- 24)

By 2020-04-25

  • Confirmed cases: 2,764 (+/- 954)
  • Deaths: 160 (+/- 55)
2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 Egypt Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Egypt Deaths 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Egypt 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Egypt 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 0 10 20 Egypt 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1.5 -1.0 -0.5 0.0 0.5 1.0 1.5 Egypt 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Egypt Days Since 100th Case Egypt Italy 0 10 20 30 40 0 5000 10000 15000 Egypt Days Since 10th Death Egypt Italy 2020-02-01 2020-03-01 2020-04-01 0 25 50 75 100 Egypt New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 Egypt Deaths Per Day 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 1000 2000 3000 4000 Egypt Forecast Cases 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 50 100 150 200 250 Egypt Forecast Deaths

El Salvador

  • Confirmed cases: 56
  • Deaths: 3
  • Death Rate: 5.36%

Equatorial Guinea

  • Confirmed cases: 16
  • Deaths: 0
  • Death Rate: 0.0%

Eritrea

  • Confirmed cases: 29
  • Deaths: 0
  • Death Rate: 0.0%

Estonia

  • Confirmed cases: 1,039
  • Deaths: 13
  • Death Rate: 1.25%

Estonia Forecast
By 2020-04-15

  • Confirmed cases: 1,670 (+/- 426)
  • Deaths: 35 (+/- 13)

By 2020-04-25

  • Confirmed cases: 2,129 (+/- 966)
  • Deaths: 52 (+/- 32)
2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 Estonia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 10 10 Estonia Deaths 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Estonia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 2.5 Estonia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -30 -20 -10 0 10 20 30 Estonia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 Estonia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Estonia Days Since 100th Case Estonia Italy 0 10 20 30 40 0 5000 10000 15000 Estonia Days Since 10th Death Estonia Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 100 100 Estonia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Estonia Deaths Per Day 2020-03-14 2020-03-25 2020-04-05 2020-04-16 500 1000 1500 2000 2500 3000 3500 Estonia Forecast Cases 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 25 50 75 100 Estonia Forecast Deaths

Eswatini

  • Confirmed cases: 9
  • Deaths: 0
  • Death Rate: 0.0%

Ethiopia

  • Confirmed cases: 38
  • Deaths: 0
  • Death Rate: 0.0%

Fiji

  • Confirmed cases: 12
  • Deaths: 0
  • Death Rate: 0.0%

Finland

  • Confirmed cases: 1,882
  • Deaths: 25
  • Death Rate: 1.33%

Finland Forecast
By 2020-04-15

  • Confirmed cases: 4,147 (+/- 1,119)
  • Deaths: 47 (+/- 13)

By 2020-04-25

  • Confirmed cases: 6,010 (+/- 2,843)
  • Deaths: 65 (+/- 30)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 Finland Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 25 Finland Deaths 2020-02-01 2020-03-01 2020-04-01 0 30 60 90 120 Finland 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 2.5 Finland 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 0 25 50 75 Finland 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1.0 -0.5 0.0 0.5 1.0 1.5 Finland 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Finland Days Since 100th Case Finland Italy 0 10 20 30 40 0 5000 10000 15000 Finland Days Since 10th Death Finland Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 250 Finland New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 Finland Deaths Per Day 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 0 2500 5000 7500 10000 Finland Forecast Cases 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 0 25 50 75 100 Finland Forecast Deaths

France

  • Confirmed cases: 90,848
  • Deaths: 7,574
  • Death Rate: 8.34%

France Forecast
By 2020-04-15

  • Confirmed cases: 170,853 (+/- 26,580)
  • Deaths: 17,117 (+/- 3,479)

By 2020-04-25

  • Confirmed cases: 248,021 (+/- 66,652)
  • Deaths: 24,905 (+/- 8,830)
2020-02-01 2020-03-01 2020-04-01 0 20000 40000 60000 80000 France Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 2000 4000 6000 France Deaths 2020-02-01 2020-03-01 2020-04-01 0 2500 5000 7500 10000 France 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 France 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 0 2000 4000 6000 France 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 France 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 France Days Since 100th Case France Italy 0 10 20 30 40 0 5000 10000 15000 France Days Since 10th Death France Italy 2020-02-01 2020-03-01 2020-04-01 0 5000 10000 15000 20000 25000 France New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 1000 1000 France Deaths Per Day 2020-02-29 2020-03-15 2020-03-30 2020-04-14 0 100000 200000 300000 France Forecast Cases 2020-02-29 2020-03-15 2020-03-30 2020-04-14 0 10000 20000 30000 France Forecast Deaths

Gabon

  • Confirmed cases: 21
  • Deaths: 1
  • Death Rate: 4.76%

Gambia

  • Confirmed cases: 4
  • Deaths: 1
  • Death Rate: 25.0%

Georgia

  • Confirmed cases: 162
  • Deaths: 1
  • Death Rate: 0.62%

Germany

  • Confirmed cases: 96,092
  • Deaths: 1,444
  • Death Rate: 1.5%

Germany Forecast
By 2020-04-15

  • Confirmed cases: 141,254 (+/- 21,833)
  • Deaths: 2,959 (+/- 303)

By 2020-04-25

  • Confirmed cases: 178,154 (+/- 55,166)
  • Deaths: 4,197 (+/- 771)
2020-02-01 2020-03-01 2020-04-01 0 20000 40000 60000 80000 Germany Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 300 600 900 1200 Germany Deaths 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 5000 6000 Germany 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Germany 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -500 0 500 1000 Germany 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 25 Germany 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Germany Days Since 100th Case Germany Italy 0 10 20 30 40 0 5000 10000 15000 Germany Days Since 10th Death Germany Italy 2020-02-01 2020-03-01 2020-04-01 0 2000 4000 6000 Germany New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Germany Deaths Per Day 2020-03-01 2020-03-15 2020-03-29 2020-04-12 2020-04-26 0 50000 100000 150000 200000 250000 Germany Forecast Cases 2020-03-01 2020-03-15 2020-03-29 2020-04-12 2020-04-26 0 1000 2000 3000 4000 5000 Germany Forecast Deaths

Ghana

  • Confirmed cases: 205
  • Deaths: 5
  • Death Rate: 2.44%

Greece

  • Confirmed cases: 1,673
  • Deaths: 68
  • Death Rate: 4.06%

Greece Forecast
By 2020-04-15

  • Confirmed cases: 2,399 (+/- 342)
  • Deaths: 115 (+/- 24)

By 2020-04-25

  • Confirmed cases: 2,978 (+/- 821)
  • Deaths: 154 (+/- 55)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 Greece Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Greece Deaths 2020-02-01 2020-03-01 2020-04-01 0 25 50 75 100 Greece 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Greece 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -30 -20 -10 0 10 20 30 Greece 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1 0 1 2 Greece 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Greece Days Since 100th Case Greece Italy 0 10 20 30 40 0 5000 10000 15000 Greece Days Since 10th Death Greece Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 100 100 Greece New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Greece Deaths Per Day 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 1000 2000 3000 4000 Greece Forecast Cases 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 0 50 100 150 200 Greece Forecast Deaths

Grenada

  • Confirmed cases: 12
  • Deaths: 0
  • Death Rate: 0.0%

Guatemala

  • Confirmed cases: 61
  • Deaths: 2
  • Death Rate: 3.28%

Guinea

  • Confirmed cases: 111
  • Deaths: 0
  • Death Rate: 0.0%

Guinea-Bissau

  • Confirmed cases: 18
  • Deaths: 0
  • Death Rate: 0.0%

Guyana

  • Confirmed cases: 23
  • Deaths: 4
  • Death Rate: 17.39%

Haiti

  • Confirmed cases: 20
  • Deaths: 0
  • Death Rate: 0.0%

Holy See

  • Confirmed cases: 7
  • Deaths: 0
  • Death Rate: 0.0%

Honduras

  • Confirmed cases: 264
  • Deaths: 15
  • Death Rate: 5.68%

Hungary

  • Confirmed cases: 678
  • Deaths: 32
  • Death Rate: 4.72%

Hungary Forecast
By 2020-04-15

  • Confirmed cases: 1,129 (+/- 238)
  • Deaths: 83 (+/- 31)

By 2020-04-25

  • Confirmed cases: 1,499 (+/- 598)
  • Deaths: 124 (+/- 76)
2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 600 Hungary Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 Hungary Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 Hungary 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Hungary 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 -5 0 5 10 Hungary 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.5 0.0 0.5 1.0 Hungary 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Hungary Days Since 100th Case Hungary Italy 0 10 20 30 40 0 5000 10000 15000 Hungary Days Since 10th Death Hungary Italy 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Hungary New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Hungary Deaths Per Day 2020-03-21 2020-03-30 2020-04-08 2020-04-17 2020-04-26 500 1000 1500 2000 Hungary Forecast Cases 2020-03-21 2020-03-30 2020-04-08 2020-04-17 2020-04-26 0 50 100 150 200 Hungary Forecast Deaths

Iceland

  • Confirmed cases: 1,417
  • Deaths: 5
  • Death Rate: 0.35%

Iceland Forecast
By 2020-04-15

  • Confirmed cases: 1,955 (+/- 306)
  • Deaths: 6 (+/- 2)

By 2020-04-25

  • Confirmed cases: 2,395 (+/- 696)
  • Deaths: 8 (+/- 4)
2020-02-01 2020-03-01 2020-04-01 0 300 600 900 1200 Iceland Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 Iceland Deaths 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Iceland 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 -1.0 -0.5 0.0 0.5 1.0 1.5 Iceland 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -20 -10 0 10 20 Iceland 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1.5 -1.0 -0.5 0.0 0.5 1.0 1.5 Iceland 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Iceland Days Since 100th Case Iceland Italy 0 10 20 30 40 0 5000 10000 15000 Iceland Days Since 10th Death Iceland Italy 2020-02-01 2020-03-01 2020-04-01 0 25 50 75 100 Iceland New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 -4 -2 0 2 4 Iceland Deaths Per Day 2020-03-12 2020-03-23 2020-04-03 2020-04-14 2020-04-25 500 1000 1500 2000 2500 3000 3500 Iceland Forecast Cases 2020-03-12 2020-03-23 2020-04-03 2020-04-14 2020-04-25 0 5 10 15 Iceland Forecast Deaths

India

  • Confirmed cases: 3,082
  • Deaths: 86
  • Death Rate: 2.79%

India Forecast
By 2020-04-15

  • Confirmed cases: 6,231 (+/- 1,866)
  • Deaths: 171 (+/- 56)

By 2020-04-25

  • Confirmed cases: 8,830 (+/- 4,459)
  • Deaths: 241 (+/- 129)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 India Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 India Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 India 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 10 10 India 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 India 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -2 0 2 4 6 India 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 India Days Since 100th Case India Italy 0 10 20 30 40 0 5000 10000 15000 India Days Since 10th Death India Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 600 India New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 India Deaths Per Day 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 5000 10000 15000 India Forecast Cases 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 100 200 300 400 India Forecast Deaths

Indonesia

  • Confirmed cases: 2,092
  • Deaths: 191
  • Death Rate: 9.13%

Indonesia Forecast
By 2020-04-15

  • Confirmed cases: 3,407 (+/- 439)
  • Deaths: 297 (+/- 62)

By 2020-04-25

  • Confirmed cases: 4,474 (+/- 1,101)
  • Deaths: 383 (+/- 144)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 2000 Indonesia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Indonesia Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Indonesia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 Indonesia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 0 10 20 Indonesia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -2 0 2 4 6 Indonesia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Indonesia Days Since 100th Case Indonesia Italy 0 10 20 30 40 0 5000 10000 15000 Indonesia Days Since 10th Death Indonesia Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 Indonesia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 Indonesia Deaths Per Day 2020-03-15 2020-03-26 2020-04-06 2020-04-17 0 1000 2000 3000 4000 5000 6000 Indonesia Forecast Cases 2020-03-15 2020-03-26 2020-04-06 2020-04-17 0 100 200 300 400 500 600 Indonesia Forecast Deaths

Iran

  • Confirmed cases: 55,743
  • Deaths: 3,452
  • Death Rate: 6.19%

Iran Forecast
By 2020-04-15

  • Confirmed cases: 78,690 (+/- 7,661)
  • Deaths: 4,868 (+/- 317)

By 2020-04-25

  • Confirmed cases: 97,439 (+/- 19,471)
  • Deaths: 6,025 (+/- 807)
2020-02-01 2020-03-01 2020-04-01 0 10000 20000 30000 40000 50000 Iran Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 Iran Deaths 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 Iran 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Iran 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -200 -100 0 100 200 300 400 Iran 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -10 -5 0 5 10 15 Iran 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Iran Days Since 100th Case Iran Italy 0 10 20 30 40 0 5000 10000 15000 Iran Days Since 10th Death Iran Italy 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 Iran New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Iran Deaths Per Day 2020-03-01 2020-04-01 0 20000 40000 60000 80000 100000 100000 Iran Forecast Cases 2020-03-01 2020-04-01 0 2000 4000 6000 Iran Forecast Deaths

Iraq

  • Confirmed cases: 878
  • Deaths: 56
  • Death Rate: 6.38%

Iraq Forecast
By 2020-04-15

  • Confirmed cases: 1,335 (+/- 237)
  • Deaths: 71 (+/- 19)

By 2020-04-25

  • Confirmed cases: 1,709 (+/- 558)
  • Deaths: 82 (+/- 43)
2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 Iraq Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 Iraq Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Iraq 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Iraq 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 -5 0 5 10 15 Iraq 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -2 -1 0 1 Iraq 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Iraq Days Since 100th Case Iraq Italy 0 10 20 30 40 0 5000 10000 15000 Iraq Days Since 10th Death Iraq Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Iraq New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 Iraq Deaths Per Day 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 500 1000 1500 2000 2500 Iraq Forecast Cases 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 20 40 60 80 100 120 140 Iraq Forecast Deaths

Ireland

  • Confirmed cases: 4,604
  • Deaths: 137
  • Death Rate: 2.98%

Ireland Forecast
By 2020-04-15

  • Confirmed cases: 7,701 (+/- 1,322)
  • Deaths: 310 (+/- 56)

By 2020-04-25

  • Confirmed cases: 10,230 (+/- 3,125)
  • Deaths: 452 (+/- 142)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 Ireland Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 25 50 75 100 125 Ireland Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Ireland 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 Ireland 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -40 -20 0 20 40 60 Ireland 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Ireland 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Ireland Days Since 100th Case Ireland Italy 0 10 20 30 40 0 5000 10000 15000 Ireland Days Since 10th Death Ireland Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 Ireland New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 Ireland Deaths Per Day 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 5000 10000 15000 Ireland Forecast Cases 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 100 200 300 400 500 600 Ireland Forecast Deaths

Israel

  • Confirmed cases: 7,851
  • Deaths: 44
  • Death Rate: 0.56%

Israel Forecast
By 2020-04-15

  • Confirmed cases: 12,803 (+/- 2,809)
  • Deaths: 86 (+/- 29)

By 2020-04-25

  • Confirmed cases: 16,801 (+/- 6,761)
  • Deaths: 120 (+/- 68)
2020-02-01 2020-03-01 2020-04-01 0 2000 4000 6000 8000 Israel Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Israel Deaths 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 Israel 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Israel 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -100 0 100 200 300 Israel 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1 0 1 2 3 Israel 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Israel Days Since 100th Case Israel Italy 0 10 20 30 40 0 5000 10000 15000 Israel Days Since 10th Death Israel Italy 2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 Israel New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Israel Deaths Per Day 2020-03-12 2020-03-23 2020-04-03 2020-04-14 2020-04-25 0 5000 10000 15000 20000 25000 Israel Forecast Cases 2020-03-12 2020-03-23 2020-04-03 2020-04-14 2020-04-25 0 50 100 150 200 Israel Forecast Deaths

Italy

  • Confirmed cases: 124,632
  • Deaths: 15,362
  • Death Rate: 12.33%

Italy Forecast
By 2020-04-15

  • Confirmed cases: 166,931 (+/- 17,061)
  • Deaths: 21,705 (+/- 1,754)

By 2020-04-25

  • Confirmed cases: 201,522 (+/- 42,585)
  • Deaths: 26,876 (+/- 4,452)
2020-02-01 2020-03-01 2020-04-01 0 20000 40000 60000 80000 100000 100000 Italy Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 5000 10000 15000 Italy Deaths 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 5000 6000 Italy 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 Italy 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -500 0 500 1000 Italy 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -25 0 25 50 75 100 125 Italy 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Italy Days Since 100th Case Italy Italy 0 10 20 30 40 0 5000 10000 15000 Italy Days Since 10th Death Italy Italy 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 5000 6000 Italy New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 Italy Deaths Per Day 2020-03-01 2020-04-01 0 50000 100000 150000 200000 250000 Italy Forecast Cases 2020-03-01 2020-04-01 0 10000 20000 30000 Italy Forecast Deaths

Jamaica

  • Confirmed cases: 53
  • Deaths: 3
  • Death Rate: 5.66%

Japan

  • Confirmed cases: 3,139
  • Deaths: 77
  • Death Rate: 2.45%

Japan Forecast
By 2020-04-15

  • Confirmed cases: 6,432 (+/- 1,036)
  • Deaths: 130 (+/- 24)

By 2020-04-25

  • Confirmed cases: 9,204 (+/- 2,597)
  • Deaths: 177 (+/- 59)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 Japan Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Japan Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Japan 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Japan 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -30 0 30 60 90 Japan 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1 0 1 2 3 4 Japan 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Japan Days Since 100th Case Japan Italy 0 10 20 30 40 0 5000 10000 15000 Japan Days Since 10th Death Japan Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Japan New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 12.5 Japan Deaths Per Day 2020-03-01 2020-04-01 0 2000 4000 6000 8000 10000 10000 Japan Forecast Cases 2020-03-01 2020-04-01 0 50 100 150 200 250 Japan Forecast Deaths

Jordan

  • Confirmed cases: 323
  • Deaths: 5
  • Death Rate: 1.55%

Kazakhstan

  • Confirmed cases: 531
  • Deaths: 6
  • Death Rate: 1.13%

Kazakhstan Forecast
By 2020-04-15

  • Confirmed cases: 868 (+/- 25)
  • Deaths: 9 (+/- 2)

By 2020-04-25

  • Confirmed cases: 1,156 (+/- 25)
  • Deaths: 12 (+/- 1)
2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Kazakhstan Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Kazakhstan Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 Kazakhstan 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 -1.0 -0.5 0.0 0.5 1.0 Kazakhstan 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 0 10 20 Kazakhstan 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1.0 -0.5 0.0 0.5 1.0 Kazakhstan 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Kazakhstan Days Since 100th Case Kazakhstan Italy 0 10 20 30 40 0 5000 10000 15000 Kazakhstan Days Since 10th Death Kazakhstan Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Kazakhstan New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 -3 -2 -1 0 1 2 3 Kazakhstan Deaths Per Day 2020-03-27 2020-04-04 2020-04-12 2020-04-20 250 500 750 1000 Kazakhstan Forecast Cases 2020-03-27 2020-04-04 2020-04-12 2020-04-20 2 4 6 8 10 12 14 Kazakhstan Forecast Deaths

Kenya

  • Confirmed cases: 126
  • Deaths: 4
  • Death Rate: 3.17%

Korea, South

  • Confirmed cases: 10,156
  • Deaths: 177
  • Death Rate: 1.74%

Korea, South Forecast
By 2020-04-15

  • Confirmed cases: 10,764 (+/- 2,104)
  • Deaths: 210 (+/- 21)

By 2020-04-25

  • Confirmed cases: 11,058 (+/- 4,591)
  • Deaths: 237 (+/- 50)
2020-02-01 2020-03-01 2020-04-01 0 2500 5000 7500 10000 Korea, South Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Korea, South Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 600 Korea, South 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 Korea, South 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -100 -50 0 50 100 150 Korea, South 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -3 -2 -1 0 1 2 3 Korea, South 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Korea, South Days Since 100th Case Korea, South Italy 0 10 20 30 40 0 5000 10000 15000 Korea, South Days Since 10th Death Korea, South Italy 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 Korea, South New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Korea, South Deaths Per Day 2020-03-01 2020-04-01 0 5000 10000 15000 Korea, South Forecast Cases 2020-03-01 2020-04-01 0 100 200 300 Korea, South Forecast Deaths

Kosovo

  • Confirmed cases: 135
  • Deaths: 1
  • Death Rate: 0.74%

Kuwait

  • Confirmed cases: 479
  • Deaths: 1
  • Death Rate: 0.21%

Kyrgyzstan

  • Confirmed cases: 144
  • Deaths: 1
  • Death Rate: 0.69%

Laos

  • Confirmed cases: 10
  • Deaths: 0
  • Death Rate: 0.0%

Latvia

  • Confirmed cases: 509
  • Deaths: 1
  • Death Rate: 0.2%

Latvia Forecast
By 2020-04-15

  • Confirmed cases: 720 (+/- 42)
  • Deaths: 4 (+/- 3)

By 2020-04-25

  • Confirmed cases: 891 (+/- 58)
  • Deaths: 6 (+/- 7)
2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Latvia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0.00 0.25 0.50 0.75 1.00 Latvia Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 Latvia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.1 0.2 0.3 Latvia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 -5 0 5 Latvia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0.0 0.1 0.2 0.3 Latvia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Latvia Days Since 100th Case Latvia Italy 0 10 20 30 40 0 5000 10000 15000 Latvia Days Since 10th Death Latvia Italy 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Latvia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.00 0.25 0.50 0.75 1.00 Latvia Deaths Per Day 2020-03-20 2020-03-29 2020-04-07 2020-04-16 2020-04-25 200 400 600 800 1000 Latvia Forecast Cases 2020-03-20 2020-03-29 2020-04-07 2020-04-16 2020-04-25 -5 0 5 10 15 Latvia Forecast Deaths

Lebanon

  • Confirmed cases: 520
  • Deaths: 17
  • Death Rate: 3.27%

Lebanon Forecast
By 2020-04-15

  • Confirmed cases: 666 (+/- 67)
  • Deaths: 26 (+/- 8)

By 2020-04-25

  • Confirmed cases: 785 (+/- 97)
  • Deaths: 34 (+/- 20)
2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Lebanon Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 Lebanon Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Lebanon 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 Lebanon 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -15 -10 -5 0 5 10 Lebanon 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.50 -0.25 0.00 0.25 0.50 Lebanon 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Lebanon Days Since 100th Case Lebanon Italy 0 10 20 30 40 0 5000 10000 15000 Lebanon Days Since 10th Death Lebanon Italy 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Lebanon New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 Lebanon Deaths Per Day 2020-03-15 2020-03-26 2020-04-06 2020-04-17 200 400 600 800 Lebanon Forecast Cases 2020-03-15 2020-03-26 2020-04-06 2020-04-17 10 20 30 40 50 60 Lebanon Forecast Deaths

Liberia

  • Confirmed cases: 10
  • Deaths: 1
  • Death Rate: 10.0%

Libya

  • Confirmed cases: 18
  • Deaths: 1
  • Death Rate: 5.56%

Liechtenstein

  • Confirmed cases: 77
  • Deaths: 1
  • Death Rate: 1.3%

Lithuania

  • Confirmed cases: 771
  • Deaths: 11
  • Death Rate: 1.43%

Lithuania Forecast
By 2020-04-15

  • Confirmed cases: 1,363 (+/- 227)
  • Deaths: 14 (+/- 1)

By 2020-04-25

  • Confirmed cases: 1,856 (+/- 576)
  • Deaths: 17 (+/- 1)
2020-02-01 2020-03-01 2020-04-01 0 200 400 600 Lithuania Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Lithuania Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Lithuania 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.00 0.25 0.50 0.75 1.00 Lithuania 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 -5 0 5 10 15 Lithuania 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.2 0.0 0.2 0.4 0.6 Lithuania 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Lithuania Days Since 100th Case Lithuania Italy 0 10 20 30 40 0 5000 10000 15000 Lithuania Days Since 10th Death Lithuania Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Lithuania New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 Lithuania Deaths Per Day 2020-03-23 2020-04-01 2020-04-10 2020-04-19 500 1000 1500 2000 2500 Lithuania Forecast Cases 2020-03-23 2020-04-01 2020-04-10 2020-04-19 2.5 5.0 7.5 10.0 12.5 15.0 17.5 Lithuania Forecast Deaths

Luxembourg

  • Confirmed cases: 2,729
  • Deaths: 31
  • Death Rate: 1.14%

Luxembourg Forecast
By 2020-04-15

  • Confirmed cases: 3,815 (+/- 206)
  • Deaths: 43 (+/- 8)

By 2020-04-25

  • Confirmed cases: 4,700 (+/- 286)
  • Deaths: 52 (+/- 11)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 2000 2500 Luxembourg Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 Luxembourg Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Luxembourg 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Luxembourg 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -40 -20 0 20 40 Luxembourg 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -2 -1 0 1 2 Luxembourg 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Luxembourg Days Since 100th Case Luxembourg Italy 0 10 20 30 40 0 5000 10000 15000 Luxembourg Days Since 10th Death Luxembourg Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 Luxembourg New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Luxembourg Deaths Per Day 2020-03-17 2020-03-27 2020-04-06 2020-04-16 2020-04-26 0 1000 2000 3000 4000 5000 Luxembourg Forecast Cases 2020-03-17 2020-03-27 2020-04-06 2020-04-16 2020-04-26 0 20 40 60 Luxembourg Forecast Deaths

MS Zaandam

  • Confirmed cases: 9
  • Deaths: 2
  • Death Rate: 22.22%

Madagascar

  • Confirmed cases: 70
  • Deaths: 0
  • Death Rate: 0.0%

Malawi

  • Confirmed cases: 4
  • Deaths: 0
  • Death Rate: 0.0%

Malaysia

  • Confirmed cases: 3,483
  • Deaths: 57
  • Death Rate: 1.64%

Malaysia Forecast
By 2020-04-15

  • Confirmed cases: 4,981 (+/- 684)
  • Deaths: 90 (+/- 19)

By 2020-04-25

  • Confirmed cases: 6,205 (+/- 1,559)
  • Deaths: 117 (+/- 46)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 Malaysia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 Malaysia Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Malaysia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 Malaysia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -20 0 20 40 60 Malaysia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -2 -1 0 1 2 Malaysia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Malaysia Days Since 100th Case Malaysia Italy 0 10 20 30 40 0 5000 10000 15000 Malaysia Days Since 10th Death Malaysia Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 Malaysia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 Malaysia Deaths Per Day 2020-03-09 2020-03-21 2020-04-02 2020-04-14 2020-04-26 0 2000 4000 6000 8000 Malaysia Forecast Cases 2020-03-09 2020-03-21 2020-04-02 2020-04-14 2020-04-26 0 50 100 150 Malaysia Forecast Deaths

Maldives

  • Confirmed cases: 19
  • Deaths: 0
  • Death Rate: 0.0%

Mali

  • Confirmed cases: 41
  • Deaths: 3
  • Death Rate: 7.32%

Malta

  • Confirmed cases: 213
  • Deaths: 0
  • Death Rate: 0.0%

Mauritania

  • Confirmed cases: 6
  • Deaths: 1
  • Death Rate: 16.67%

Mauritius

  • Confirmed cases: 196
  • Deaths: 7
  • Death Rate: 3.57%

Mexico

  • Confirmed cases: 1,688
  • Deaths: 60
  • Death Rate: 3.55%

Mexico Forecast
By 2020-04-15

  • Confirmed cases: 3,201 (+/- 684)
  • Deaths: 164 (+/- 54)

By 2020-04-25

  • Confirmed cases: 4,438 (+/- 1,709)
  • Deaths: 248 (+/- 135)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 Mexico Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Mexico Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Mexico 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Mexico 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 0 10 20 30 Mexico 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1 0 1 2 3 Mexico 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Mexico Days Since 100th Case Mexico Italy 0 10 20 30 40 0 5000 10000 15000 Mexico Days Since 10th Death Mexico Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Mexico New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 10 10 Mexico Deaths Per Day 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 2000 4000 6000 Mexico Forecast Cases 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 100 200 300 400 Mexico Forecast Deaths

Moldova

  • Confirmed cases: 752
  • Deaths: 12
  • Death Rate: 1.6%

Moldova Forecast
By 2020-04-15

  • Confirmed cases: 2,159 (+/- 674)
  • Deaths: 45 (+/- 25)

By 2020-04-25

  • Confirmed cases: 3,308 (+/- 1,706)
  • Deaths: 72 (+/- 63)
2020-02-01 2020-03-01 2020-04-01 0 200 400 600 Moldova Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Moldova Deaths 2020-02-01 2020-03-01 2020-04-01 0 25 50 75 100 Moldova 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 Moldova 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 Moldova 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.2 0.0 0.2 0.4 0.6 0.8 1.0 Moldova 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Moldova Days Since 100th Case Moldova Italy 0 10 20 30 40 0 5000 10000 15000 Moldova Days Since 10th Death Moldova Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Moldova New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Moldova Deaths Per Day 2020-03-24 2020-04-01 2020-04-09 2020-04-17 2020-04-25 0 1000 2000 3000 4000 5000 6000 Moldova Forecast Cases 2020-03-24 2020-04-01 2020-04-09 2020-04-17 2020-04-25 0 50 100 150 Moldova Forecast Deaths

Monaco

  • Confirmed cases: 66
  • Deaths: 1
  • Death Rate: 1.52%

Mongolia

  • Confirmed cases: 14
  • Deaths: 0
  • Death Rate: 0.0%

Montenegro

  • Confirmed cases: 201
  • Deaths: 2
  • Death Rate: 1.0%

Morocco

  • Confirmed cases: 919
  • Deaths: 59
  • Death Rate: 6.42%

Morocco Forecast
By 2020-04-15

  • Confirmed cases: 1,691 (+/- 396)
  • Deaths: 90 (+/- 19)

By 2020-04-25

  • Confirmed cases: 2,321 (+/- 909)
  • Deaths: 115 (+/- 27)
2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 Morocco Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Morocco Deaths 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Morocco 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Morocco 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 0 10 20 30 Morocco 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1 0 1 2 3 Morocco 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Morocco Days Since 100th Case Morocco Italy 0 10 20 30 40 0 5000 10000 15000 Morocco Days Since 10th Death Morocco Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 100 100 Morocco New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Morocco Deaths Per Day 2020-03-23 2020-04-01 2020-04-10 2020-04-19 500 1000 1500 2000 2500 3000 3500 Morocco Forecast Cases 2020-03-23 2020-04-01 2020-04-10 2020-04-19 0 50 100 150 Morocco Forecast Deaths

Mozambique

  • Confirmed cases: 10
  • Deaths: 0
  • Death Rate: 0.0%

Namibia

  • Confirmed cases: 14
  • Deaths: 0
  • Death Rate: 0.0%

Nepal

  • Confirmed cases: 9
  • Deaths: 0
  • Death Rate: 0.0%

Netherlands

  • Confirmed cases: 16,727
  • Deaths: 1,656
  • Death Rate: 9.9%

Netherlands Forecast
By 2020-04-15

  • Confirmed cases: 24,853 (+/- 3,158)
  • Deaths: 3,097 (+/- 324)

By 2020-04-25

  • Confirmed cases: 31,493 (+/- 8,027)
  • Deaths: 4,277 (+/- 822)
2020-02-01 2020-03-01 2020-04-01 0 5000 10000 15000 Netherlands Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 Netherlands Deaths 2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 Netherlands 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Netherlands 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -100 -50 0 50 100 150 Netherlands 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -5 0 5 10 15 20 25 Netherlands 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Netherlands Days Since 100th Case Netherlands Italy 0 10 20 30 40 0 5000 10000 15000 Netherlands Days Since 10th Death Netherlands Italy 2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 Netherlands New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Netherlands Deaths Per Day 2020-03-06 2020-03-19 2020-04-01 2020-04-14 0 10000 20000 30000 40000 Netherlands Forecast Cases 2020-03-06 2020-03-19 2020-04-01 2020-04-14 0 1000 2000 3000 4000 5000 Netherlands Forecast Deaths

New Zealand

  • Confirmed cases: 950
  • Deaths: 1
  • Death Rate: 0.11%

New Zealand Forecast
By 2020-04-15

  • Confirmed cases: 1,461 (+/- 129)
  • Deaths: 2 (+/- 0)

By 2020-04-25

  • Confirmed cases: 1,881 (+/- 182)
  • Deaths: 3 (+/- 1)
2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 New Zealand Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0.00 0.25 0.50 0.75 1.00 New Zealand Deaths 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 New Zealand 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.1 0.2 0.3 New Zealand 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -5 0 5 10 15 20 25 New Zealand 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.3 -0.2 -0.1 0.0 0.1 0.2 0.3 New Zealand 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 New Zealand Days Since 100th Case New Zealand Italy 0 10 20 30 40 0 5000 10000 15000 New Zealand Days Since 10th Death New Zealand Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 New Zealand New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.00 0.25 0.50 0.75 1.00 New Zealand Deaths Per Day 2020-03-23 2020-04-01 2020-04-10 2020-04-19 500 1000 1500 2000 New Zealand Forecast Cases 2020-03-23 2020-04-01 2020-04-10 2020-04-19 0 1 2 3 New Zealand Forecast Deaths

Nicaragua

  • Confirmed cases: 5
  • Deaths: 1
  • Death Rate: 20.0%

Niger

  • Confirmed cases: 144
  • Deaths: 8
  • Death Rate: 5.56%

Nigeria

  • Confirmed cases: 214
  • Deaths: 4
  • Death Rate: 1.87%

North Macedonia

  • Confirmed cases: 483
  • Deaths: 17
  • Death Rate: 3.52%

Norway

  • Confirmed cases: 5,550
  • Deaths: 62
  • Death Rate: 1.12%

Norway Forecast
By 2020-04-15

  • Confirmed cases: 7,418 (+/- 931)
  • Deaths: 117 (+/- 21)

By 2020-04-25

  • Confirmed cases: 8,945 (+/- 2,118)
  • Deaths: 161 (+/- 54)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 5000 Norway Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Norway Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Norway 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Norway 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -60 -40 -20 0 20 40 60 Norway 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1.0 -0.5 0.0 0.5 1.0 Norway 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Norway Days Since 100th Case Norway Italy 0 10 20 30 40 0 5000 10000 15000 Norway Days Since 10th Death Norway Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Norway New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 Norway Deaths Per Day 2020-03-06 2020-03-19 2020-04-01 2020-04-14 0 2000 4000 6000 8000 10000 10000 Norway Forecast Cases 2020-03-06 2020-03-19 2020-04-01 2020-04-14 0 50 100 150 200 250 Norway Forecast Deaths

Oman

  • Confirmed cases: 277
  • Deaths: 2
  • Death Rate: 0.72%

Pakistan

  • Confirmed cases: 2,818
  • Deaths: 41
  • Death Rate: 1.45%

Pakistan Forecast
By 2020-04-15

  • Confirmed cases: 4,665 (+/- 838)
  • Deaths: 77 (+/- 26)

By 2020-04-25

  • Confirmed cases: 6,160 (+/- 1,989)
  • Deaths: 105 (+/- 66)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 2000 2500 Pakistan Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Pakistan Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 250 Pakistan 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Pakistan 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -25 0 25 50 Pakistan 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 Pakistan 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Pakistan Days Since 100th Case Pakistan Italy 0 10 20 30 40 0 5000 10000 15000 Pakistan Days Since 10th Death Pakistan Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Pakistan New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 Pakistan Deaths Per Day 2020-03-16 2020-03-26 2020-04-05 2020-04-15 2020-04-25 0 2000 4000 6000 8000 Pakistan Forecast Cases 2020-03-16 2020-03-26 2020-04-05 2020-04-15 2020-04-25 0 50 100 150 200 Pakistan Forecast Deaths

Panama

  • Confirmed cases: 1,673
  • Deaths: 41
  • Death Rate: 2.45%

Panama Forecast
By 2020-04-15

  • Confirmed cases: 2,933 (+/- 620)
  • Deaths: 71 (+/- 24)

By 2020-04-25

  • Confirmed cases: 3,981 (+/- 1,427)
  • Deaths: 96 (+/- 53)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 Panama Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Panama Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Panama 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 Panama 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -25 0 25 50 Panama 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1 0 1 2 Panama 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Panama Days Since 100th Case Panama Italy 0 10 20 30 40 0 5000 10000 15000 Panama Days Since 10th Death Panama Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 Panama New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 Panama Deaths Per Day 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 1000 2000 3000 4000 5000 6000 Panama Forecast Cases 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 50 100 150 Panama Forecast Deaths

Papua New Guinea

  • Confirmed cases: 1
  • Deaths: 0
  • Death Rate: 0.0%

Paraguay

  • Confirmed cases: 96
  • Deaths: 3
  • Death Rate: 3.12%

Peru

  • Confirmed cases: 1,746
  • Deaths: 73
  • Death Rate: 4.18%

Peru Forecast
By 2020-04-15

  • Confirmed cases: 3,169 (+/- 626)
  • Deaths: 172 (+/- 49)

By 2020-04-25

  • Confirmed cases: 4,324 (+/- 1,585)
  • Deaths: 253 (+/- 125)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 Peru Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Peru Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Peru 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 Peru 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -30 -20 -10 0 10 20 Peru 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1 0 1 2 3 Peru 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Peru Days Since 100th Case Peru Italy 0 10 20 30 40 0 5000 10000 15000 Peru Days Since 10th Death Peru Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 250 Peru New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 Peru Deaths Per Day 2020-03-17 2020-03-27 2020-04-06 2020-04-16 2020-04-26 0 1000 2000 3000 4000 5000 6000 Peru Forecast Cases 2020-03-17 2020-03-27 2020-04-06 2020-04-16 2020-04-26 0 100 200 300 400 Peru Forecast Deaths

Philippines

  • Confirmed cases: 3,094
  • Deaths: 144
  • Death Rate: 4.65%

Philippines Forecast
By 2020-04-15

  • Confirmed cases: 4,922 (+/- 1,609)
  • Deaths: 279 (+/- 65)

By 2020-04-25

  • Confirmed cases: 6,292 (+/- 4,037)
  • Deaths: 389 (+/- 155)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 Philippines Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 30 60 90 120 Philippines Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Philippines 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 Philippines 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -40 -20 0 20 40 60 80 Philippines 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -2 0 2 4 6 Philippines 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Philippines Days Since 100th Case Philippines Italy 0 10 20 30 40 0 5000 10000 15000 Philippines Days Since 10th Death Philippines Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Philippines New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 25 Philippines Deaths Per Day 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 2000 4000 6000 8000 10000 10000 Philippines Forecast Cases 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 100 200 300 400 500 600 Philippines Forecast Deaths

Poland

  • Confirmed cases: 3,627
  • Deaths: 79
  • Death Rate: 2.18%

Poland Forecast
By 2020-04-15

  • Confirmed cases: 6,388 (+/- 1,189)
  • Deaths: 167 (+/- 55)

By 2020-04-25

  • Confirmed cases: 8,634 (+/- 2,924)
  • Deaths: 238 (+/- 132)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 Poland Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Poland Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Poland 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 10 10 Poland 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Poland 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Poland 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Poland Days Since 100th Case Poland Italy 0 10 20 30 40 0 5000 10000 15000 Poland Days Since 10th Death Poland Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 Poland New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 12.5 Poland Deaths Per Day 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 2000 4000 6000 8000 10000 10000 Poland Forecast Cases 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 100 200 300 400 Poland Forecast Deaths

Portugal

  • Confirmed cases: 10,524
  • Deaths: 266
  • Death Rate: 2.53%

Portugal Forecast
By 2020-04-15

  • Confirmed cases: 16,975 (+/- 2,937)
  • Deaths: 507 (+/- 84)

By 2020-04-25

  • Confirmed cases: 22,194 (+/- 7,453)
  • Deaths: 699 (+/- 212)
2020-02-01 2020-03-01 2020-04-01 0 2500 5000 7500 10000 Portugal Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 250 Portugal Deaths 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 Portugal 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 25 Portugal 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -50 0 50 100 Portugal 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -2 0 2 4 Portugal 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Portugal Days Since 100th Case Portugal Italy 0 10 20 30 40 0 5000 10000 15000 Portugal Days Since 10th Death Portugal Italy 2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 Portugal New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 Portugal Deaths Per Day 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 0 10000 20000 30000 Portugal Forecast Cases 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 0 250 500 750 1000 Portugal Forecast Deaths

Qatar

  • Confirmed cases: 1,325
  • Deaths: 3
  • Death Rate: 0.23%

Qatar Forecast
By 2020-04-15

  • Confirmed cases: 3,433 (+/- 794)
  • Deaths: 5 (+/- 3)

By 2020-04-25

  • Confirmed cases: 5,169 (+/- 2,016)
  • Deaths: 5 (+/- 4)
2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 1000 1000 Qatar Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 Qatar Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Qatar 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.1 0.2 0.3 0.4 0.5 0.6 Qatar 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -60 -30 0 30 60 Qatar 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.3 -0.2 -0.1 0.0 0.1 0.2 0.3 Qatar 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Qatar Days Since 100th Case Qatar Italy 0 10 20 30 40 0 5000 10000 15000 Qatar Days Since 10th Death Qatar Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 250 Qatar New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.00 0.25 0.50 0.75 1.00 Qatar Deaths Per Day 2020-03-11 2020-03-23 2020-04-04 2020-04-16 2000 4000 6000 8000 Qatar Forecast Cases 2020-03-11 2020-03-23 2020-04-04 2020-04-16 0 3 6 9 12 Qatar Forecast Deaths

Romania

  • Confirmed cases: 3,613
  • Deaths: 146
  • Death Rate: 4.04%

Romania Forecast
By 2020-04-15

  • Confirmed cases: 7,294 (+/- 1,672)
  • Deaths: 289 (+/- 72)

By 2020-04-25

  • Confirmed cases: 10,301 (+/- 4,111)
  • Deaths: 405 (+/- 184)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 Romania Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Romania Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Romania 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 Romania 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -30 0 30 60 90 Romania 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Romania 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Romania Days Since 100th Case Romania Italy 0 10 20 30 40 0 5000 10000 15000 Romania Days Since 10th Death Romania Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 Romania New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 Romania Deaths Per Day 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 5000 10000 15000 Romania Forecast Cases 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 200 400 600 Romania Forecast Deaths

Russia

  • Confirmed cases: 4,731
  • Deaths: 43
  • Death Rate: 0.91%

Russia Forecast
By 2020-04-15

  • Confirmed cases: 9,999 (+/- 2,215)
  • Deaths: 104 (+/- 37)

By 2020-04-25

  • Confirmed cases: 14,293 (+/- 5,627)
  • Deaths: 154 (+/- 93)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 Russia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Russia Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 600 Russia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 Russia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Russia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1 0 1 2 Russia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Russia Days Since 100th Case Russia Italy 0 10 20 30 40 0 5000 10000 15000 Russia Days Since 10th Death Russia Italy 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 Russia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 Russia Deaths Per Day 2020-03-17 2020-03-27 2020-04-06 2020-04-16 2020-04-26 0 5000 10000 15000 20000 Russia Forecast Cases 2020-03-17 2020-03-27 2020-04-06 2020-04-16 2020-04-26 0 100 200 300 Russia Forecast Deaths

Rwanda

  • Confirmed cases: 102
  • Deaths: 0
  • Death Rate: 0.0%

Saint Kitts and Nevis

  • Confirmed cases: 9
  • Deaths: 0
  • Death Rate: 0.0%

Saint Lucia

  • Confirmed cases: 14
  • Deaths: 0
  • Death Rate: 0.0%

Saint Vincent and the Grenadines

  • Confirmed cases: 7
  • Deaths: 0
  • Death Rate: 0.0%

San Marino

  • Confirmed cases: 259
  • Deaths: 32
  • Death Rate: 12.36%

Saudi Arabia

  • Confirmed cases: 2,179
  • Deaths: 29
  • Death Rate: 1.33%

Saudi Arabia Forecast
By 2020-04-15

  • Confirmed cases: 3,497 (+/- 651)
  • Deaths: 65 (+/- 22)

By 2020-04-25

  • Confirmed cases: 4,573 (+/- 1,564)
  • Deaths: 95 (+/- 54)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 2000 Saudi Arabia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 25 Saudi Arabia Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Saudi Arabia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 Saudi Arabia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -40 -20 0 20 40 Saudi Arabia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.5 0.0 0.5 1.0 1.5 Saudi Arabia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Saudi Arabia Days Since 100th Case Saudi Arabia Italy 0 10 20 30 40 0 5000 10000 15000 Saudi Arabia Days Since 10th Death Saudi Arabia Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 Saudi Arabia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Saudi Arabia Deaths Per Day 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 2000 4000 6000 Saudi Arabia Forecast Cases 2020-03-14 2020-03-25 2020-04-05 2020-04-16 0 50 100 150 Saudi Arabia Forecast Deaths

Senegal

  • Confirmed cases: 219
  • Deaths: 2
  • Death Rate: 0.91%

Serbia

  • Confirmed cases: 1,624
  • Deaths: 44
  • Death Rate: 2.71%

Serbia Forecast
By 2020-04-15

  • Confirmed cases: 3,380 (+/- 925)
  • Deaths: 104 (+/- 36)

By 2020-04-25

  • Confirmed cases: 4,813 (+/- 2,235)
  • Deaths: 153 (+/- 92)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 Serbia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Serbia Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Serbia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 Serbia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -20 0 20 40 60 Serbia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -3 -2 -1 0 1 2 3 Serbia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Serbia Days Since 100th Case Serbia Italy 0 10 20 30 40 0 5000 10000 15000 Serbia Days Since 10th Death Serbia Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Serbia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 -2.5 0.0 2.5 5.0 7.5 10.0 Serbia Deaths Per Day 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 2000 4000 6000 8000 Serbia Forecast Cases 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 100 200 300 Serbia Forecast Deaths

Seychelles

  • Confirmed cases: 10
  • Deaths: 0
  • Death Rate: 0.0%

Sierra Leone

  • Confirmed cases: 4
  • Deaths: 0
  • Death Rate: 0.0%

Singapore

  • Confirmed cases: 1,189
  • Deaths: 6
  • Death Rate: 0.5%

Singapore Forecast
By 2020-04-15

  • Confirmed cases: 1,807 (+/- 197)
  • Deaths: 9 (+/- 3)

By 2020-04-25

  • Confirmed cases: 2,315 (+/- 487)
  • Deaths: 11 (+/- 7)
2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 Singapore Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 6 Singapore Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Singapore 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.00 0.25 0.50 0.75 1.00 Singapore 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -5 0 5 10 15 Singapore 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.50 -0.25 0.00 0.25 0.50 Singapore 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Singapore Days Since 100th Case Singapore Italy 0 10 20 30 40 0 5000 10000 15000 Singapore Days Since 10th Death Singapore Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Singapore New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 Singapore Deaths Per Day 2020-02-29 2020-03-15 2020-03-30 2020-04-14 500 1000 1500 2000 2500 3000 Singapore Forecast Cases 2020-02-29 2020-03-15 2020-03-30 2020-04-14 0 5 10 15 20 Singapore Forecast Deaths

Slovakia

  • Confirmed cases: 471
  • Deaths: 1
  • Death Rate: 0.21%

Slovenia

  • Confirmed cases: 977
  • Deaths: 22
  • Death Rate: 2.25%

Slovenia Forecast
By 2020-04-15

  • Confirmed cases: 1,346 (+/- 171)
  • Deaths: 44 (+/- 11)

By 2020-04-25

  • Confirmed cases: 1,647 (+/- 379)
  • Deaths: 62 (+/- 27)
2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 Slovenia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 Slovenia Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 Slovenia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 Slovenia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -15 -10 -5 0 5 10 Slovenia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -1.0 -0.5 0.0 0.5 1.0 Slovenia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Slovenia Days Since 100th Case Slovenia Italy 0 10 20 30 40 0 5000 10000 15000 Slovenia Days Since 10th Death Slovenia Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Slovenia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Slovenia Deaths Per Day 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 500 1000 1500 2000 Slovenia Forecast Cases 2020-03-13 2020-03-24 2020-04-04 2020-04-15 2020-04-26 0 25 50 75 100 Slovenia Forecast Deaths

Somalia

  • Confirmed cases: 7
  • Deaths: 0
  • Death Rate: 0.0%

South Africa

  • Confirmed cases: 1,585
  • Deaths: 9
  • Death Rate: 0.57%

South Africa Forecast
By 2020-04-15

  • Confirmed cases: 2,250 (+/- 351)
  • Deaths: 22 (+/- 7)

By 2020-04-25

  • Confirmed cases: 2,791 (+/- 546)
  • Deaths: 33 (+/- 19)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 South Africa Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 2 4 6 8 South Africa Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 South Africa 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.2 0.4 0.6 0.8 1.0 1.0 South Africa 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -50 -25 0 25 South Africa 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.2 0.0 0.2 0.4 0.6 South Africa 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 South Africa Days Since 100th Case South Africa Italy 0 10 20 30 40 0 5000 10000 15000 South Africa Days Since 10th Death South Africa Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 250 South Africa New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 South Africa Deaths Per Day 2020-03-18 2020-03-28 2020-04-07 2020-04-17 500 1000 1500 2000 2500 3000 3500 South Africa Forecast Cases 2020-03-18 2020-03-28 2020-04-07 2020-04-17 0 10 20 30 40 50 60 South Africa Forecast Deaths

Spain

  • Confirmed cases: 126,168
  • Deaths: 11,947
  • Death Rate: 9.47%

Spain Forecast
By 2020-04-15

  • Confirmed cases: 187,869 (+/- 22,361)
  • Deaths: 18,790 (+/- 1,887)

By 2020-04-25

  • Confirmed cases: 238,199 (+/- 56,779)
  • Deaths: 24,362 (+/- 4,794)
2020-02-01 2020-03-01 2020-04-01 0 20000 40000 60000 80000 100000 100000 Spain Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 2500 5000 7500 10000 Spain Deaths 2020-02-01 2020-03-01 2020-04-01 0 2000 4000 6000 8000 Spain 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 Spain 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -500 0 500 1000 1500 2000 Spain 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -50 0 50 100 150 Spain 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Spain Days Since 100th Case Spain Italy 0 10 20 30 40 0 5000 10000 15000 Spain Days Since 10th Death Spain Italy 2020-02-01 2020-03-01 2020-04-01 0 2000 4000 6000 8000 Spain New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 Spain Deaths Per Day 2020-03-02 2020-03-16 2020-03-30 2020-04-13 0 100000 200000 300000 Spain Forecast Cases 2020-03-02 2020-03-16 2020-03-30 2020-04-13 0 10000 20000 30000 Spain Forecast Deaths

Sri Lanka

  • Confirmed cases: 166
  • Deaths: 5
  • Death Rate: 3.01%

Sudan

  • Confirmed cases: 10
  • Deaths: 2
  • Death Rate: 20.0%

Suriname

  • Confirmed cases: 10
  • Deaths: 1
  • Death Rate: 10.0%

Sweden

  • Confirmed cases: 6,443
  • Deaths: 373
  • Death Rate: 5.79%

Sweden Forecast
By 2020-04-15

  • Confirmed cases: 9,798 (+/- 1,796)
  • Deaths: 442 (+/- 209)

By 2020-04-25

  • Confirmed cases: 12,538 (+/- 4,459)
  • Deaths: 455 (+/- 388)
2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 5000 6000 Sweden Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 Sweden Deaths 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Sweden 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Sweden 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -50 0 50 100 Sweden 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -15 -10 -5 0 5 10 15 Sweden 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Sweden Days Since 100th Case Sweden Italy 0 10 20 30 40 0 5000 10000 15000 Sweden Days Since 10th Death Sweden Italy 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 600 Sweden New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Sweden Deaths Per Day 2020-03-06 2020-03-19 2020-04-01 2020-04-14 0 5000 10000 15000 Sweden Forecast Cases 2020-03-06 2020-03-19 2020-04-01 2020-04-14 0 250 500 750 1000 Sweden Forecast Deaths

Switzerland

  • Confirmed cases: 20,505
  • Deaths: 666
  • Death Rate: 3.25%

Switzerland Forecast
By 2020-04-15

  • Confirmed cases: 28,249 (+/- 4,502)
  • Deaths: 1,296 (+/- 227)

By 2020-04-25

  • Confirmed cases: 34,572 (+/- 11,212)
  • Deaths: 1,810 (+/- 566)
2020-02-01 2020-03-01 2020-04-01 0 5000 10000 15000 20000 Switzerland Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 600 Switzerland Deaths 2020-02-01 2020-03-01 2020-04-01 0 250 500 750 1000 Switzerland 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 50 60 Switzerland 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -100 0 100 200 300 Switzerland 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -5 0 5 10 Switzerland 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Switzerland Days Since 100th Case Switzerland Italy 0 10 20 30 40 0 5000 10000 15000 Switzerland Days Since 10th Death Switzerland Italy 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 1000 1000 Switzerland New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Switzerland Deaths Per Day 2020-03-05 2020-03-18 2020-03-31 2020-04-13 2020-04-26 0 10000 20000 30000 40000 50000 Switzerland Forecast Cases 2020-03-05 2020-03-18 2020-03-31 2020-04-13 2020-04-26 0 500 1000 1500 2000 2500 Switzerland Forecast Deaths

Syria

  • Confirmed cases: 16
  • Deaths: 2
  • Death Rate: 12.5%

Taiwan*

  • Confirmed cases: 355
  • Deaths: 5
  • Death Rate: 1.41%

Tanzania

  • Confirmed cases: 20
  • Deaths: 1
  • Death Rate: 5.0%

Thailand

  • Confirmed cases: 2,067
  • Deaths: 20
  • Death Rate: 0.97%

Thailand Forecast
By 2020-04-15

  • Confirmed cases: 2,954 (+/- 561)
  • Deaths: 42 (+/- 12)

By 2020-04-25

  • Confirmed cases: 3,679 (+/- 1,299)
  • Deaths: 60 (+/- 30)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 2000 Thailand Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 20 Thailand Deaths 2020-02-01 2020-03-01 2020-04-01 0 25 50 75 100 125 Thailand 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 Thailand 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -20 -10 0 10 20 30 40 Thailand 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.5 0.0 0.5 1.0 Thailand 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Thailand Days Since 100th Case Thailand Italy 0 10 20 30 40 0 5000 10000 15000 Thailand Days Since 10th Death Thailand Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Thailand New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Thailand Deaths Per Day 2020-03-15 2020-03-26 2020-04-06 2020-04-17 0 1000 2000 3000 4000 5000 Thailand Forecast Cases 2020-03-15 2020-03-26 2020-04-06 2020-04-17 0 25 50 75 100 Thailand Forecast Deaths

Timor-Leste

  • Confirmed cases: 1
  • Deaths: 0
  • Death Rate: 0.0%

Togo

  • Confirmed cases: 41
  • Deaths: 3
  • Death Rate: 7.32%

Trinidad and Tobago

  • Confirmed cases: 103
  • Deaths: 6
  • Death Rate: 5.83%

Tunisia

  • Confirmed cases: 553
  • Deaths: 18
  • Death Rate: 3.25%

Tunisia Forecast
By 2020-04-15

  • Confirmed cases: 834 (+/- 36)
  • Deaths: 28 (+/- 6)

By 2020-04-25

  • Confirmed cases: 1,081 (+/- 43)
  • Deaths: 36 (+/- 9)
2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Tunisia Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 5 10 15 Tunisia Deaths 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 40 Tunisia 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 2.5 Tunisia 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 -5 0 5 10 15 Tunisia 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.50 -0.25 0.00 0.25 0.50 Tunisia 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Tunisia Days Since 100th Case Tunisia Italy 0 10 20 30 40 0 5000 10000 15000 Tunisia Days Since 10th Death Tunisia Italy 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Tunisia New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Tunisia Deaths Per Day 2020-03-25 2020-04-02 2020-04-10 2020-04-18 200 400 600 800 1000 Tunisia Forecast Cases 2020-03-25 2020-04-02 2020-04-10 2020-04-18 10 20 30 40 50 Tunisia Forecast Deaths

Turkey

  • Confirmed cases: 23,934
  • Deaths: 501
  • Death Rate: 2.09%

Turkey Forecast
By 2020-04-15

  • Confirmed cases: 50,561 (+/- 13,146)
  • Deaths: 1,182 (+/- 320)

By 2020-04-25

  • Confirmed cases: 72,356 (+/- 33,103)
  • Deaths: 1,739 (+/- 814)
2020-02-01 2020-03-01 2020-04-01 0 5000 10000 15000 20000 Turkey Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 Turkey Deaths 2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 2000 2500 Turkey 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 Turkey 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -100 0 100 200 300 400 500 Turkey 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0 3 6 9 12 Turkey 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Turkey Days Since 100th Case Turkey Italy 0 10 20 30 40 0 5000 10000 15000 Turkey Days Since 10th Death Turkey Italy 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 Turkey New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 Turkey Deaths Per Day 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 20000 40000 60000 80000 100000 100000 Turkey Forecast Cases 2020-03-19 2020-03-29 2020-04-08 2020-04-18 0 1000 2000 3000 Turkey Forecast Deaths

US

  • Confirmed cases: 308,850
  • Deaths: 8,407
  • Death Rate: 2.72%

US Forecast
By 2020-04-15

  • Confirmed cases: 607,009 (+/- 56,548)
  • Deaths: 20,187 (+/- 2,432)

By 2020-04-25

  • Confirmed cases: 850,626 (+/- 143,723)
  • Deaths: 29,817 (+/- 6,179)
2020-02-01 2020-03-01 2020-04-01 0 100000 200000 300000 US Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 2000 4000 6000 8000 US Deaths 2020-02-01 2020-03-01 2020-04-01 0 10000 20000 30000 US 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 1000 1000 US 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 US 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 US 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 100000 200000 300000 US Days Since 100th Case US Italy 0 10 20 30 40 0 5000 10000 15000 US Days Since 10th Death US Italy 2020-02-01 2020-03-01 2020-04-01 0 10000 20000 30000 US New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 1000 1000 US Deaths Per Day 2020-03-03 2020-03-17 2020-03-31 2020-04-14 0 250000 500000 750000 1000000 US Forecast Cases 2020-03-03 2020-03-17 2020-03-31 2020-04-14 0 10000 20000 30000 40000 US Forecast Deaths

Uganda

  • Confirmed cases: 48
  • Deaths: 0
  • Death Rate: 0.0%

Ukraine

  • Confirmed cases: 1,225
  • Deaths: 32
  • Death Rate: 2.61%

Ukraine Forecast
By 2020-04-15

  • Confirmed cases: 2,662 (+/- 613)
  • Deaths: 72 (+/- 25)

By 2020-04-25

  • Confirmed cases: 3,801 (+/- 1,533)
  • Deaths: 105 (+/- 63)
2020-02-01 2020-03-01 2020-04-01 0 200 400 600 800 1000 1000 Ukraine Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 10 20 30 Ukraine Deaths 2020-02-01 2020-03-01 2020-04-01 0 30 60 90 120 Ukraine 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 Ukraine 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -10 0 10 20 30 Ukraine 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.2 0.0 0.2 0.4 0.6 0.8 1.0 Ukraine 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 Ukraine Days Since 100th Case Ukraine Italy 0 10 20 30 40 0 5000 10000 15000 Ukraine Days Since 10th Death Ukraine Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 Ukraine New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 1 2 3 4 5 Ukraine Deaths Per Day 2020-03-26 2020-04-03 2020-04-11 2020-04-19 0 1000 2000 3000 4000 5000 6000 Ukraine Forecast Cases 2020-03-26 2020-04-03 2020-04-11 2020-04-19 0 50 100 150 200 Ukraine Forecast Deaths

United Arab Emirates

  • Confirmed cases: 1,505
  • Deaths: 10
  • Death Rate: 0.66%

United Arab Emirates Forecast
By 2020-04-15

  • Confirmed cases: 3,678 (+/- 1,222)
  • Deaths: 13 (+/- 8)

By 2020-04-25

  • Confirmed cases: 5,453 (+/- 3,104)
  • Deaths: 13 (+/- 14)
2020-02-01 2020-03-01 2020-04-01 0 500 1000 1500 United Arab Emirates Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0.0 2.5 5.0 7.5 10.0 United Arab Emirates Deaths 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 United Arab Emirates 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 United Arab Emirates 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 United Arab Emirates 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 -0.50 -0.25 0.00 0.25 0.50 United Arab Emirates 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 United Arab Emirates Days Since 100th Case United Arab Emirates Italy 0 10 20 30 40 0 5000 10000 15000 United Arab Emirates Days Since 10th Death United Arab Emirates Italy 2020-02-01 2020-03-01 2020-04-01 0 50 100 150 200 United Arab Emirates New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0.0 0.5 1.0 1.5 2.0 United Arab Emirates Deaths Per Day 2020-03-18 2020-03-28 2020-04-07 2020-04-17 0 2500 5000 7500 10000 United Arab Emirates Forecast Cases 2020-03-18 2020-03-28 2020-04-07 2020-04-17 0 10 20 30 United Arab Emirates Forecast Deaths

United Kingdom

  • Confirmed cases: 42,477
  • Deaths: 4,320
  • Death Rate: 10.17%

United Kingdom Forecast
By 2020-04-15

  • Confirmed cases: 76,718 (+/- 11,641)
  • Deaths: 10,675 (+/- 1,630)

By 2020-04-25

  • Confirmed cases: 104,678 (+/- 29,585)
  • Deaths: 15,868 (+/- 4,143)
2020-02-01 2020-03-01 2020-04-01 0 10000 20000 30000 40000 United Kingdom Confirmed Cases 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 United Kingdom Deaths 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 United Kingdom 1st Derivative (new cases) 2020-02-01 2020-03-01 2020-04-01 0 100 200 300 400 500 600 United Kingdom 1st Derivative (new deaths) 2020-02-01 2020-03-01 2020-04-01 -200 0 200 400 600 United Kingdom 2nd Derivative (cases acceleration) 2020-02-01 2020-03-01 2020-04-01 0 20 40 60 80 100 100 United Kingdom 2nd Derivative (deaths acceleration) 0 10 20 30 40 0 20000 40000 60000 80000 100000 100000 United Kingdom Days Since 100th Case United Kingdom Italy 0 10 20 30 40 0 5000 10000 15000 United Kingdom Days Since 10th Death United Kingdom Italy 2020-02-01 2020-03-01 2020-04-01 0 1000 2000 3000 4000 United Kingdom New Cases Per Day 2020-02-01 2020-03-01 2020-04-01 0 200 400 600 United Kingdom Deaths Per Day 2020-03-05 2020-03-18 2020-03-31 2020-04-13 2020-04-26 0 50000 100000 150000 United Kingdom Forecast Cases 2020-03-05 2020-03-18 2020-03-31 2020-04-13 2020-04-26 0 5000 10000 15000 20000 United Kingdom Forecast Deaths

Uruguay

  • Confirmed cases: 400
  • Deaths: 5
  • Death Rate: 1.25%

Uzbekistan

  • Confirmed cases: 266
  • Deaths: 2
  • Death Rate: 0.75%

Venezuela

  • Confirmed cases: 155
  • Deaths: 7
  • Death Rate: 4.52%

Vietnam

  • Confirmed cases: 240
  • Deaths: 0
  • Death Rate: 0.0%

West Bank and Gaza

  • Confirmed cases: 217
  • Deaths: 1
  • Death Rate: 0.46%

Zambia

  • Confirmed cases: 39
  • Deaths: 1
  • Death Rate: 2.56%

Zimbabwe

  • Confirmed cases: 9
  • Deaths: 1
  • Death Rate: 11.11%
┌ Warning: RCall.jl: Warning in ets(x, "AAN", alpha = alpha, beta = beta, phi = phi, damped = damped,  :
│   Not enough data to use damping
└ @ RCall /home/danhopp/.julia/packages/RCall/g7dhB/src/io.jl:113
┌ Warning: RCall.jl: Warning in ets(x, "AAN", alpha = alpha, beta = beta, phi = phi, damped = damped,  :
│   Not enough data to use damping
└ @ RCall /home/danhopp/.julia/packages/RCall/g7dhB/src/io.jl:113
┌ Warning: RCall.jl: Warning in ets(x, "AAN", alpha = alpha, beta = beta, phi = phi, damped = damped,  :
│   Not enough data to use damping
└ @ RCall /home/danhopp/.julia/packages/RCall/g7dhB/src/io.jl:113
┌ Warning: RCall.jl: Warning in ets(x, "AAN", alpha = alpha, beta = beta, phi = phi, damped = damped,  :
│   Not enough data to use damping
└ @ RCall /home/danhopp/.julia/packages/RCall/g7dhB/src/io.jl:113